3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/nixos/modules/services/hardware/fancontrol.nix

46 lines
1.4 KiB
Nix
Raw Normal View History

2019-09-25 03:23:59 +01:00
{ config, lib, pkgs, ... }:
with lib;
let
2019-09-25 12:43:06 +01:00
cfg = config.hardware.fancontrol;
configFile = pkgs.writeText "fancontrol.conf" cfg.config;
2019-09-25 03:23:59 +01:00
in{
options.hardware.fancontrol = {
enable = mkEnableOption "software fan control (requires fancontrol.config)";
config = mkOption {
default = null;
type = types.lines;
description = "Fancontrol configuration file content. See <citerefentry><refentrytitle>pwmconfig</refentrytitle><manvolnum>8</manvolnum></citerefentry> from the lm_sensors package.";
example = ''
# Configuration file generated by pwmconfig
INTERVAL=10
DEVPATH=hwmon3=devices/virtual/thermal/thermal_zone2 hwmon4=devices/platform/f71882fg.656
DEVNAME=hwmon3=soc_dts1 hwmon4=f71869a
FCTEMPS=hwmon4/device/pwm1=hwmon3/temp1_input
FCFANS= hwmon4/device/pwm1=hwmon4/device/fan1_input
MINTEMP=hwmon4/device/pwm1=35
MAXTEMP=hwmon4/device/pwm1=65
MINSTART=hwmon4/device/pwm1=150
MINSTOP=hwmon4/device/pwm1=0
'';
2019-09-25 03:23:59 +01:00
};
};
config = mkIf cfg.enable {
systemd.services.fancontrol = {
unitConfig.Documentation = "man:fancontrol(8)";
description = "software fan control";
2019-09-25 03:23:59 +01:00
wantedBy = [ "multi-user.target" ];
after = [ "lm_sensors.service" ];
2019-09-25 03:23:59 +01:00
serviceConfig = {
Type = "simple";
ExecStart = "${pkgs.lm_sensors}/sbin/fancontrol ${configFile}";
2019-09-25 03:23:59 +01:00
};
};
};
}