hosts/helios: hardware tweaks
Some checks failed
Check flake / build-amd64-linux (push) Failing after 1m45s

Remove blacklisting of amdgpu module
Add cpu frequency governor
This commit is contained in:
2025-06-16 11:20:07 +01:00
parent 8e7aa906e2
commit 2023757f1f

View File

@ -22,13 +22,14 @@
]; ];
initrd.kernelModules = [ ]; initrd.kernelModules = [ ];
initrd.supportedFilesystems = [ "zfs" ]; initrd.supportedFilesystems = [ "zfs" ];
blacklistedKernelModules = [ "amdgpu" ];
kernelModules = [ "kvm-intel" ]; kernelModules = [ "kvm-intel" ];
kernelParams = [ "elevator=none" ]; kernelParams = [ "elevator=none" ];
extraModulePackages = [ ]; extraModulePackages = [ ];
supportedFilesystems = [ "zfs" ]; supportedFilesystems = [ "zfs" ];
}; };
powerManagement.cpuFreqGovernor = "schedutil";
fileSystems."/" = { fileSystems."/" = {
device = "rpool/system/root"; device = "rpool/system/root";
fsType = "zfs"; fsType = "zfs";