tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
Add a Hydra job to track the size of the initrd
Eelco Dolstra
11 years ago
a97e1ee5
666cf992
+4
1 changed file
expand all
collapse all
unified
split
nixos
release.nix
+4
nixos/release.nix
···
132
132
manpages = buildFromConfig ({ pkgs, ... }: { }) (config: config.system.build.manual.manpages);
133
133
134
134
135
135
+
# Build the initial ramdisk so Hydra can keep track of its size over time.
136
136
+
initialRamdisk = buildFromConfig ({ pkgs, ... }: { }) (config: config.system.build.initialRamdisk);
137
137
+
138
138
+
135
139
iso_minimal = forAllSystems (system: makeIso {
136
140
module = ./modules/installer/cd-dvd/installation-cd-minimal.nix;
137
141
type = "minimal";