1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/nixos/modules/services/hardware/fancontrol.nix

34 lines
761 B
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;
2019-09-25 03:23:59 +01:00
in {
options.hardware.fancontrol = {
enable = mkEnableOption "fancontrol (requires a configuration file, see pwmconfig)";
2019-09-25 03:23:59 +01:00
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}";
};
};
};
}