diff options
Diffstat (limited to 'pkgs')
-rw-r--r-- | pkgs/default.nix | 18 |
1 files changed, 16 insertions, 2 deletions
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 {}; |