{ config, lib, pkgs, modulesPath, ... }: { imports = [ (modulesPath + "/profiles/qemu-guest.nix") ]; boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "virtio_pci" "sr_mod" "virtio_blk" ]; boot.loader.grub.devices = [ "/dev/vda" ]; networking = { dhcpcd.IPv6rs = true; }; fileSystems = { "/" = { device = "/dev/vda1"; autoResize = true; fsType = "ext4"; }; }; }