mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 16:15:05 +00:00
41 lines
615 B
Nix
41 lines
615 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let
|
||
|
cfg = config.services.thermald;
|
||
|
|
||
|
in {
|
||
|
|
||
|
###### interface
|
||
|
|
||
|
options = {
|
||
|
|
||
|
services.thermald = {
|
||
|
|
||
|
enable = mkOption {
|
||
|
default = false;
|
||
|
description = ''
|
||
|
Whether to enable thermald, the temperature management daemon.
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
###### implementation
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
|
||
|
systemd.services.thermald = {
|
||
|
description = "Thermal Daemon Service";
|
||
|
wantedBy = [ "multi-user.target" ];
|
||
|
script = "exec ${pkgs.thermald}/sbin/thermald --no-daemon --dbus-enable";
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|