This commit is contained in:
mjallen18
2025-05-23 14:52:49 -05:00
parent 6c9bd35f44
commit 1daa6f0232
5 changed files with 14 additions and 2 deletions

View File

@@ -12,7 +12,10 @@ in
imports = [ ./options.nix ];
config = lib.mkIf cfg.enable {
boot.kernelParams = [ (if cfg.enable then "amdgpu.ppfeaturemask=0xffffffff" else null) ];
boot = {
kernelModules = [ "nct6775" ];
kernelParams = [ (if cfg.enable then "amdgpu.ppfeaturemask=0xffffffff" else null) ];
};
# Configure programs
programs.corectrl = {