diff options
author | makefu <github@syntax-fehler.de> | 2017-09-26 00:22:53 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2017-09-26 00:22:53 +0200 |
commit | 1514a6502dfeed739a4752652ca5437222110375 (patch) | |
tree | a8fb55f5e696f60b6cb8f2146a55e759a9bebfcd /krebs | |
parent | aa8f67903971b2786608567e63f168826122d14e (diff) |
puyak.r: enable fan control
Diffstat (limited to 'krebs')
-rw-r--r-- | krebs/1systems/puyak/config.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/krebs/1systems/puyak/config.nix b/krebs/1systems/puyak/config.nix index 978bd18e0..cca8850fa 100644 --- a/krebs/1systems/puyak/config.nix +++ b/krebs/1systems/puyak/config.nix @@ -65,7 +65,12 @@ ''; environment.systemPackages = [ pkgs.zsh ]; - boot.kernelModules = [ "kvm-intel" ]; + boot = { + kernelModules = [ "kvm-intel" ]; + extraModprobeConfig = '' + options thinkpad_acpi fan_control=1 + ''; + } users.users.joerg = { openssh.authorizedKeys.keys = [ config.krebs.users.Mic92.pubkey ]; isNormalUser = true; |