From 68d03fe362b7e0df11662d8d6a1e01eac0bfae77 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Wed, 17 Sep 2025 22:07:16 -0400 Subject: refactor: remove modules folder, fully split home and system modules --- pkgs/default.nix | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) (limited to 'pkgs') diff --git a/pkgs/default.nix b/pkgs/default.nix index d9f6fee..6c5b5f0 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -1,6 +1,20 @@ -{pkgs, ...} @ inputs: { +{ + pkgs, + inputs, + lib, + ... +}: let + options = + (lib.evalModules { + modules = [ + ../options.nix + ]; + }).config; +in { arcanist = pkgs.callPackage ./arcanist {}; - astal = pkgs.callPackage ./astal inputs; + astal = pkgs.callPackage ./astal { + inherit inputs options; + }; gibfprint-2-tod1-vfs0090 = pkgs.callPackage ./libfprint-2-tod1-vfs0090 {}; ly = pkgs.callPackage ./ly {}; unofficial-homestuck-collection = pkgs.callPackage ./unofficial-homestuck-collection {}; -- cgit v1.2.3-freya