We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb5c9ac commit a40acdaCopy full SHA for a40acda
nix/tests/common.nix
@@ -15,6 +15,7 @@
15
};
16
17
18
+ system.switch.enable = true;
19
virtualisation.graphics = false;
20
virtualisation.memorySize = 1536;
21
boot.loader.grub.enable = false;
nix/tests/default.nix
@@ -9,7 +9,7 @@ let
9
inherit (import "${pkgs.path}/nixos/tests/ssh-keys.nix" pkgs) snakeOilPrivateKey;
10
11
# Include all build dependencies to be able to build profiles offline
12
- allDrvOutputs = pkg: pkgs.runCommand "allDrvOutputs" { refs = pkgs.writeReferencesToFile pkg.drvPath; } ''
+ allDrvOutputs = pkg: pkgs.runCommand "allDrvOutputs" { refs = pkgs.writeClosure pkg.drvPath; } ''
13
touch $out
14
while read ref; do
case $ref in
0 commit comments