{ pkgs, lib, modulesPath, ... }: { imports = [ (modulesPath + "/installer/cd-dvd/installation-cd-base.nix") ../../configuration/gpg-ssh ]; # systemd in initrd is broken with ISOs # Failed to mount /sysroot/iso # https://github.com/NixOS/nixpkgs/issues/327187 boot.initrd.systemd.enable = false; networking.hostName = "isowo"; isoImage.isoBaseName = lib.mkForce "nixos-isowo"; environment.systemPackages = with pkgs; [ nixfiles-auto-install ]; services.openssh.settings = { PermitRootLogin = lib.mkForce "yes"; }; }