{ modulesPath, ... }: { imports = [ (modulesPath + "/profiles/qemu-guest.nix") ]; boot.loader.grub.device = "/dev/vda"; boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi" ]; boot.initrd.kernelModules = [ "nvme" ]; fileSystems."/" = { device = "/dev/vda2"; fsType = "ext4"; }; networking = { hostName = "kristine"; interfaces.ens3 = { useDHCP = false; ipv4 = { addresses = [{ address = "147.45.49.65"; prefixLength = 24; }]; }; }; defaultGateway = "147.45.49.1"; nameservers = ["1.1.1.1"]; }; boot.tmp.cleanOnBoot = true; zramSwap.enable = true; system.stateVersion = "25.05"; }