yep, more dotfiles
1{ lib 2 3, modulesPath 4, ... 5}: 6 7{ 8 imports = [ "${modulesPath}/profiles/qemu-guest.nix" ]; 9 10 config = { 11 system.stateVersion = "24.11"; 12 13 # --- Generated by `nixos-generate-config` --- 14 boot.initrd.availableKernelModules = [ "xhci_pci" "virtio_scsi" "sr_mod" ]; 15 boot.initrd.kernelModules = [ ]; 16 boot.kernelModules = [ ]; 17 boot.extraModulePackages = [ ]; 18 19 networking.useDHCP = lib.mkDefault true; 20 21 nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux"; 22 }; 23} 24