{ modulesPath, ... }: { imports = [ (modulesPath + "/profiles/qemu-guest.nix") ]; boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; networking.hostName = throw "insert yout hostname here"; boot.kernelParams = [ "console=ttyS0" "console=tty1" "nvme.shutdown_timeout=10" "libiscsi.debug_libiscsi_eh=1" "net.ifnames=0" ]; boot.initrd.kernelModules = [ "nvme" ]; boot.kernelModules = [ "kvm-amd" ]; networking.useDHCP = false; networking.interfaces.eth0.useDHCP = true; fileSystems."/" = { device = "/dev/disk/by-label/root"; fsType = "ext4"; }; fileSystems."/boot" = { device = "/dev/disk/by-label/boot"; fsType = "vfat"; }; swapDevices = [{ device = "/dev/disk/by-label/swap"; }]; services.openssh.enable = true; users.users.root.openssh.authorizedKeys.keys = [ (throw "insert your ssh key here") ]; system.stateVersion = "23.05"; }