2024-02-27 12:53:27 +00:00
|
|
|
# A custom nixos-generator module to set as a graphical installation with a
|
|
|
|
# graphical installer profile. Useful for hosts that can be used both as a
|
|
|
|
# persistent live installer or as a graphical ISO. Based from the original
|
|
|
|
# install-iso format.
|
|
|
|
{ lib, modulesPath, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
"${modulesPath}/installer/cd-dvd/installation-cd-graphical-calamares.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"];
|
|
|
|
|
2024-03-06 08:27:32 +00:00
|
|
|
formatAttr = "isoImage";
|
2024-02-27 12:53:27 +00:00
|
|
|
fileExtension = ".iso";
|
|
|
|
}
|