diff options
Diffstat (limited to 'flake/packages')
-rw-r--r-- | flake/packages/default.nix | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/flake/packages/default.nix b/flake/packages/default.nix index 470ea05c..a7274aeb 100644 --- a/flake/packages/default.nix +++ b/flake/packages/default.nix @@ -1,8 +1,9 @@ +# vim: ts=2 { nixos-generators, defaultSpecialArgs, pkgs, - shell-library, + sysLib, ... }: { iso = nixos-generators.nixosGenerate { @@ -16,25 +17,25 @@ install = import ../../bootstrap/install { inherit pkgs - shell-library + sysLib ; }; activate = import ../../bootstrap/activate { inherit pkgs - shell-library + sysLib ; }; setup = import ../../bootstrap/setup { inherit pkgs - shell-library + sysLib ; }; config_setup = import ../../bootstrap/config_setup { inherit pkgs - shell-library + sysLib ; }; } |