feat(skadi): disable watchdog, setup fan control.
This commit is contained in:
parent
d155147165
commit
25c41e7f32
1 changed files with 12 additions and 0 deletions
|
|
@ -18,6 +18,9 @@
|
||||||
# Enable aarch64 emulation
|
# Enable aarch64 emulation
|
||||||
boot.binfmt.emulatedSystems = ["aarch64-linux"];
|
boot.binfmt.emulatedSystems = ["aarch64-linux"];
|
||||||
|
|
||||||
|
# Disable intel watchdog for good
|
||||||
|
boot.blacklistedKernelModules = ["intel_pmc_bxt" "iTCO_vendor_support" "iTCO_wdt"];
|
||||||
|
|
||||||
# Use the xanmod kernel
|
# Use the xanmod kernel
|
||||||
boot.kernelPackages = pkgs.linuxPackages_cachyos-lto;
|
boot.kernelPackages = pkgs.linuxPackages_cachyos-lto;
|
||||||
services.scx = {
|
services.scx = {
|
||||||
|
|
@ -96,6 +99,15 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Enable coolercontrol to setup fancurves
|
||||||
|
programs.coolercontrol = {
|
||||||
|
enable = true;
|
||||||
|
nvidiaSupport = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
# Needed modules to have fan control
|
||||||
|
boot.kernelModules = ["coretemp" "nct6775"];
|
||||||
|
|
||||||
# Enable ratbagd to customize mouse options
|
# Enable ratbagd to customize mouse options
|
||||||
services.ratbagd.enable = true;
|
services.ratbagd.enable = true;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue