hosts/youko: add kernel module for fan control
This commit is contained in:
parent
f369c754a3
commit
dcb2f78a9c
1 changed files with 6 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
boot = {
|
||||
extraModulePackages = with config.boot.kernelPackages; [ it87 ];
|
||||
initrd.availableKernelModules = [
|
||||
"nvme"
|
||||
"xhci_pci"
|
||||
|
@ -11,7 +13,11 @@
|
|||
kernelModules = [
|
||||
"kvm-amd"
|
||||
"i2c-dev"
|
||||
"it87"
|
||||
];
|
||||
extraModprobeConfig = ''
|
||||
options it87 ignore_resource_conflict=1
|
||||
'';
|
||||
};
|
||||
|
||||
services.smartd.enable = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue