Files
chiasson-nix/modules/hosts/14900k/_private/platform.nix
T
2026-05-25 13:48:47 -03:00

16 lines
460 B
Nix

{ ... }: {
#TODO[epic=Moderate] Clean this up, move to host's configuration.nix.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
powerManagement.cpuFreqGovernor = "performance";
hardware.enableRedistributableFirmware = true;
hardware.enableAllFirmware = true;
hardware.cpu.intel.updateMicrocode = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
system.stateVersion = "25.11";
}