From 81b6dec3c8c576227463d7a45fced3e8c49ef1f2 Mon Sep 17 00:00:00 2001 From: Evils Date: Wed, 25 Sep 2019 04:23:59 +0200 Subject: [PATCH] fancontrol service init --- nixos/modules/module-list.nix | 1 + .../modules/services/hardware/fancontrol.nix | 39 +++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 nixos/modules/services/hardware/fancontrol.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 775cc05aa0a..a648eef46e5 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -328,6 +328,7 @@ ./services/hardware/bluetooth.nix ./services/hardware/bolt.nix ./services/hardware/brltty.nix + ./services/hardware/fancontrol.nix ./services/hardware/freefall.nix ./services/hardware/fwupd.nix ./services/hardware/illum.nix diff --git a/nixos/modules/services/hardware/fancontrol.nix b/nixos/modules/services/hardware/fancontrol.nix new file mode 100644 index 00000000000..bd4938ab509 --- /dev/null +++ b/nixos/modules/services/hardware/fancontrol.nix @@ -0,0 +1,39 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + cfg = config.services.fancontrol; + +in { + + options.services.fancontrol = { + enable = mkOption { + type = types.bool; + default = false; + example = true; + description = "Whether to enable 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"; + User = "root"; + ExecStart = "${pkgs.lm_sensors}/bin/fancontrol ${cfg.configFile}"; + }; + }; + }; + + +}