mirror of
https://github.com/nix-community/nixos-generators.git
synced 2024-11-22 18:24:59 +03:00
85c198f7c0
zstd -Xcompression-level 19
17 lines
405 B
Nix
17 lines
405 B
Nix
{
|
|
lib,
|
|
modulesPath,
|
|
...
|
|
}: {
|
|
imports = [
|
|
"${toString modulesPath}/installer/cd-dvd/installation-cd-base.nix"
|
|
];
|
|
|
|
# override installation-cd-base and enable wpa and sshd start at boot
|
|
systemd.services.wpa_supplicant.wantedBy = lib.mkForce ["multi-user.target"];
|
|
systemd.services.sshd.wantedBy = lib.mkForce ["multi-user.target"];
|
|
|
|
formatAttr = "isoImage";
|
|
fileExtension = ".iso";
|
|
}
|