{ config, modulesPath, lib, ... }: { imports = [ "${modulesPath}/profiles/qemu-guest.nix" ]; config = { boot.growPartition = true; boot.loader.grub.device = "/dev/vda"; fileSystems."/" = lib.mkDefault { device = "/dev/vda1"; fsType = "ext4"; }; networking.useNetworkd = true; }; }