tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
tests/boot: Remove unused store contents
William A. Kennington III
10 years ago
26e44a0a
22bc910c
+1
-16
1 changed file
expand all
collapse all
unified
split
nixos
tests
boot.nix
+1
-16
nixos/tests/boot.nix
···
12
12
modules =
13
13
[ ../modules/installer/cd-dvd/installation-cd-minimal.nix
14
14
../modules/testing/test-instrumentation.nix
15
15
-
{ key = "serial";
16
16
-
boot.loader.grub.timeout = mkOverride 0 0;
17
17
-
18
18
-
# The test cannot access the network, so any sources we
19
19
-
# need must be included in the ISO.
20
20
-
isoImage.storeContents =
21
21
-
[ pkgs.glibcLocales
22
22
-
pkgs.sudo
23
23
-
pkgs.docbook5
24
24
-
pkgs.docbook5_xsl
25
25
-
pkgs.grub
26
26
-
pkgs.perlPackages.XMLLibXML
27
27
-
pkgs.unionfs-fuse
28
28
-
pkgs.gummiboot
29
29
-
];
30
30
-
}
15
15
+
{ key = "serial"; }
31
16
];
32
17
}).config.system.build.isoImage;
33
18