diff options
author | Jörg Thalheim <joerg@thalheim.io> | 2022-11-29 14:58:31 +0100 |
---|---|---|
committer | Jörg Thalheim <joerg@thalheim.io> | 2022-11-29 15:00:25 +0100 |
commit | 67f991e2bcf38d7c2a99f1cdbbdb4fbc60b8e8a0 (patch) | |
tree | 0c060cb0aedc6322d7d2130005bcfdd947e03239 /tests | |
parent | 6c3e0d22e465541b35772ba4a00331f587bc28c5 (diff) |
drop environment.systemPackages
Those packages are only used for installation and are not used
afterwards. system.build outputs can be used to get them in an installer
included.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib.nix | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/lib.nix b/tests/lib.nix index 195abcc..3fb3486 100644 --- a/tests/lib.nix +++ b/tests/lib.nix @@ -33,7 +33,6 @@ (lib.optionalAttrs (testMode == "module") { imports = [ ../module.nix ]; disko = { - addScripts = false; enableConfig = true; devices = import disko-config { inherit disks lib; }; }; @@ -76,7 +75,6 @@ (lib.optionalAttrs (testMode == "module") { imports = [ ../module.nix ]; disko = { - addScripts = true; enableConfig = false; devices = import disko-config { disks = builtins.tail disks; inherit lib; }; }; |