diff options
author | Freya Murphy <freya@freyacat.org> | 2025-09-17 22:07:16 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-09-17 22:07:16 -0400 |
commit | 68d03fe362b7e0df11662d8d6a1e01eac0bfae77 (patch) | |
tree | a76abd05f662f73b4083ddb0d8bf0d72c29e5a74 /pkgs | |
parent | update commits (diff) | |
download | dotfiles-nix-68d03fe362b7e0df11662d8d6a1e01eac0bfae77.tar.gz dotfiles-nix-68d03fe362b7e0df11662d8d6a1e01eac0bfae77.tar.bz2 dotfiles-nix-68d03fe362b7e0df11662d8d6a1e01eac0bfae77.zip |
refactor: remove modules folder, fully split home and system modules
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 {}; |