{ lib, modulesPath, ... }: { system.stateVersion = "23.11"; imports = [ (modulesPath + "/profiles/qemu-guest.nix") ]; boot.initrd.availableKernelModules = [ "uhci_hcd" "ehci_pci" "ahci" "virtio_pci" "virtio_scsi" "sd_mod" "sr_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-amd" ]; boot.extraModulePackages = [ ]; fileSystems."/" = { device = "/dev/disk/by-uuid/22f0fb39-e264-450d-b575-9dedd2a02361"; fsType = "ext4"; }; fileSystems."/boot" = { device = "/dev/disk/by-uuid/A604-6A7B"; fsType = "vfat"; }; networking.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; }