{ 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 = "mio"; interfaces.ens3 = { useDHCP = false; ipv4 = { addresses = [{ address = "62.60.177.69"; prefixLength = 32; }]; routes = [{ address = "10.0.0.1"; prefixLength = 32; }]; }; }; defaultGateway = "10.0.0.1"; nameservers = ["1.1.1.1"]; }; boot.tmp.cleanOnBoot = true; zramSwap.enable = true; system.stateVersion = "25.05"; }