From 2023757f1ff15ddebcc3a944c60206876cefcbb0 Mon Sep 17 00:00:00 2001 From: Jordan Holt Date: Mon, 16 Jun 2025 11:20:07 +0100 Subject: [PATCH] hosts/helios: hardware tweaks Remove blacklisting of amdgpu module Add cpu frequency governor --- hosts/helios/hardware-configuration.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/helios/hardware-configuration.nix b/hosts/helios/hardware-configuration.nix index 22797aa..278e8ee 100644 --- a/hosts/helios/hardware-configuration.nix +++ b/hosts/helios/hardware-configuration.nix @@ -22,13 +22,14 @@ ]; initrd.kernelModules = [ ]; initrd.supportedFilesystems = [ "zfs" ]; - blacklistedKernelModules = [ "amdgpu" ]; kernelModules = [ "kvm-intel" ]; kernelParams = [ "elevator=none" ]; extraModulePackages = [ ]; supportedFilesystems = [ "zfs" ]; }; + powerManagement.cpuFreqGovernor = "schedutil"; + fileSystems."/" = { device = "rpool/system/root"; fsType = "zfs";