From 6030f6ea42ee529e3da24c686319fdeab7fbcada Mon Sep 17 00:00:00 2001 From: John Ogle Date: Tue, 8 Oct 2024 08:37:53 -0700 Subject: [PATCH] [z790prors] Enable BEES --- machines/z790prors/hardware-configuration.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/machines/z790prors/hardware-configuration.nix b/machines/z790prors/hardware-configuration.nix index 38db57d..dad093b 100644 --- a/machines/z790prors/hardware-configuration.nix +++ b/machines/z790prors/hardware-configuration.nix @@ -48,6 +48,14 @@ swapDevices = [ ]; + services.beesd.filesystems = { + root = { + spec = "LABEL=nixos"; + hashTableSizeMB = 4096; + verbosity = "crit"; + }; + }; + powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; }