2022-12-04 13:45:43 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
tree,
|
|
|
|
modulesPath,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: {
|
2022-11-02 09:05:24 +00:00
|
|
|
imports = [
|
|
|
|
# (modulesPath + "/profiles/qemu-guest.nix")
|
|
|
|
|
|
|
|
(modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix")
|
|
|
|
(modulesPath + "/installer/cd-dvd/channel.nix")
|
|
|
|
|
|
|
|
tree.users.root
|
|
|
|
tree.profiles.base
|
|
|
|
tree.profiles.sshd
|
|
|
|
];
|
2022-11-10 14:57:07 +00:00
|
|
|
config.isoImage = {
|
|
|
|
isoBaseName = "nixos-chaos";
|
|
|
|
compressImage = false;
|
|
|
|
squashfsCompression = "zstd -Xcompression-level 1";
|
|
|
|
};
|
2022-11-10 11:25:33 +00:00
|
|
|
config.services.openssh.permitRootLogin = lib.mkForce "yes";
|
2022-11-02 09:05:24 +00:00
|
|
|
}
|