nixpkgs/nixos/modules/services/misc/mbpfan.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

102 lines
3.5 KiB
Nix
Raw Normal View History

2015-05-01 03:15:19 +02:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.mbpfan;
verbose = if cfg.verbose then "v" else "";
settingsFormat = pkgs.formats.ini {};
2022-01-21 22:31:21 +01:00
settingsFile = settingsFormat.generate "mbpfan.ini" cfg.settings;
2015-05-01 03:15:19 +02:00
in {
options.services.mbpfan = {
enable = mkEnableOption "mbpfan, fan controller daemon for Apple Macs and MacBooks";
2015-05-01 03:15:19 +02:00
package = mkOption {
type = types.package;
2015-05-01 03:15:19 +02:00
default = pkgs.mbpfan;
defaultText = literalExpression "pkgs.mbpfan";
2015-05-01 03:15:19 +02:00
description = ''
The package used for the mbpfan daemon.
'';
};
verbose = mkOption {
type = types.bool;
default = false;
description = ''
If true, sets the log level to verbose.
'';
};
settings = mkOption {
default = {};
2022-03-27 15:01:17 +02:00
description = "INI configuration for Mbpfan.";
type = types.submodule {
freeformType = settingsFormat.type;
options.general.min_fan1_speed = mkOption {
2022-01-21 22:31:21 +01:00
type = types.nullOr types.int;
default = 2000;
2022-01-21 22:31:21 +01:00
description = ''
2022-03-27 15:01:17 +02:00
You can check minimum and maximum fan limits with
"cat /sys/devices/platform/applesmc.768/fan*_min" and
"cat /sys/devices/platform/applesmc.768/fan*_max" respectively.
Setting to null implies using default value from applesmc.
2022-01-21 22:31:21 +01:00
'';
};
options.general.low_temp = mkOption {
type = types.int;
default = 55;
2022-03-27 15:01:17 +02:00
description = "If temperature is below this, fans will run at minimum speed.";
};
options.general.high_temp = mkOption {
type = types.int;
default = 58;
2022-03-27 15:01:17 +02:00
description = "If temperature is above this, fan speed will gradually increase.";
};
options.general.max_temp = mkOption {
type = types.int;
default = 86;
2022-03-27 15:01:17 +02:00
description = "If temperature is above this, fans will run at maximum speed.";
};
options.general.polling_interval = mkOption {
type = types.int;
default = 1;
description = "The polling interval.";
};
};
};
2015-05-01 03:15:19 +02:00
};
imports = [
(mkRenamedOptionModule [ "services" "mbpfan" "pollingInterval" ] [ "services" "mbpfan" "settings" "general" "polling_interval" ])
(mkRenamedOptionModule [ "services" "mbpfan" "maxTemp" ] [ "services" "mbpfan" "settings" "general" "max_temp" ])
(mkRenamedOptionModule [ "services" "mbpfan" "lowTemp" ] [ "services" "mbpfan" "settings" "general" "low_temp" ])
(mkRenamedOptionModule [ "services" "mbpfan" "highTemp" ] [ "services" "mbpfan" "settings" "general" "high_temp" ])
(mkRenamedOptionModule [ "services" "mbpfan" "minFanSpeed" ] [ "services" "mbpfan" "settings" "general" "min_fan1_speed" ])
(mkRenamedOptionModule [ "services" "mbpfan" "maxFanSpeed" ] [ "services" "mbpfan" "settings" "general" "max_fan1_speed" ])
];
2015-05-01 03:15:19 +02:00
config = mkIf cfg.enable {
boot.kernelModules = [ "coretemp" "applesmc" ];
environment.etc."mbpfan.conf".source = settingsFile;
environment.systemPackages = [ cfg.package ];
2015-05-01 03:15:19 +02:00
systemd.services.mbpfan = {
description = "A fan manager daemon for MacBook Pro";
wantedBy = [ "sysinit.target" ];
after = [ "syslog.target" "sysinit.target" ];
restartTriggers = [ config.environment.etc."mbpfan.conf".source ];
serviceConfig = {
Type = "simple";
ExecStart = "${cfg.package}/bin/mbpfan -f${verbose}";
2015-05-01 03:15:19 +02:00
ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
2018-12-19 22:37:45 +01:00
PIDFile = "/run/mbpfan.pid";
2015-05-01 03:15:19 +02:00
Restart = "always";
};
};
};
}