nixpkgs/nixos/modules/services/hardware/fancontrol.nix
Evils-Devils 5fe72ee446
Update nixos/modules/services/hardware/fancontrol.nix
Co-Authored-By: markuskowa <markus.kowalewski@gmail.com>
2019-09-25 14:49:28 +02:00

33 lines
761 B
Nix

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.hardware.fancontrol;
in {
options.hardware.fancontrol = {
enable = mkEnableOption "fancontrol (requires a configuration file, see pwmconfig)";
configFile = mkOption {
type = types.str;
default = "/etc/fancontrol";
example = "/home/user/.config/fancontrol";
description = "Path to the configuration file, likely generated with pwmconfig.";
};
};
config = mkIf cfg.enable {
systemd.services.fancontrol = {
description = "Fan speed control from lm_sensors";
wantedBy = [ "multi-user.target" ];
serviceConfig = {
Type = "simple";
ExecStart = "${pkgs.lm_sensors}/bin/fancontrol ${cfg.configFile}";
};
};
};
}