2018-05-19 01:32:18 +03:00
|
|
|
{
|
2023-05-29 10:35:13 +03:00
|
|
|
lib,
|
|
|
|
modulesPath,
|
|
|
|
...
|
|
|
|
}: {
|
2018-05-19 01:32:18 +03:00
|
|
|
imports = [
|
2019-02-01 01:06:29 +03:00
|
|
|
"${toString modulesPath}/installer/cd-dvd/installation-cd-base.nix"
|
2018-05-19 01:32:18 +03:00
|
|
|
];
|
|
|
|
|
|
|
|
# override installation-cd-base and enable wpa and sshd start at boot
|
2023-05-29 10:35:13 +03:00
|
|
|
systemd.services.wpa_supplicant.wantedBy = lib.mkForce ["multi-user.target"];
|
|
|
|
systemd.services.sshd.wantedBy = lib.mkForce ["multi-user.target"];
|
2018-05-19 01:32:18 +03:00
|
|
|
|
2019-01-17 17:18:00 +03:00
|
|
|
formatAttr = "isoImage";
|
2023-07-22 17:20:50 +03:00
|
|
|
fileExtension = ".iso";
|
2018-05-19 01:32:18 +03:00
|
|
|
}
|