trying to get this shit to build

This commit is contained in:
Bryan Ramos 2023-06-06 16:26:04 -04:00
parent 1861c3e6e6
commit 375a6dc02f
17 changed files with 111 additions and 115 deletions

View file

@ -53,8 +53,8 @@
};
# Virtualisation
nix.settings.system-features = "kvm";
environment.systemPackages = pkgs.virt-manager;
nix.settings.system-features = [ "kvm" ];
environment.systemPackages = [ pkgs.virt-manager ];
virtualisation.libvirtd = {
enable = true;
@ -66,6 +66,7 @@
};
# CPU
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}