Cleanup: remove newlines.

This commit is contained in:
Thomas Strobel 2014-08-14 12:42:16 +02:00
parent b63b8260b5
commit 1da35629cc
1 changed files with 0 additions and 12 deletions

View File

@ -4,37 +4,25 @@ with lib;
let let
cfg = config.services.thermald; cfg = config.services.thermald;
in { in {
###### interface ###### interface
options = { options = {
services.thermald = { services.thermald = {
enable = mkOption { enable = mkOption {
default = false; default = false;
description = '' description = ''
Whether to enable thermald, the temperature management daemon. Whether to enable thermald, the temperature management daemon.
''; '';
}; };
}; };
}; };
###### implementation ###### implementation
config = mkIf cfg.enable { config = mkIf cfg.enable {
systemd.services.thermald = { systemd.services.thermald = {
description = "Thermal Daemon Service"; description = "Thermal Daemon Service";
wantedBy = [ "multi-user.target" ]; wantedBy = [ "multi-user.target" ];
script = "exec ${pkgs.thermald}/sbin/thermald --no-daemon --dbus-enable"; script = "exec ${pkgs.thermald}/sbin/thermald --no-daemon --dbus-enable";
}; };
}; };
} }