{ lib, modulesPath, ... }: { system.stateVersion = "25.05"; 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 = [ ]; boot.extraModulePackages = [ ]; fileSystems."/" = { device = "/dev/disk/by-uuid/b124e8c9-50d0-4254-bc7d-2784db2f8175"; fsType = "ext4"; }; fileSystems."/boot" = { device = "/dev/disk/by-uuid/95c196c6-803d-4e68-9d31-3843a5260319"; fsType = "ext4"; }; networking.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; }