about summary refs log tree commit diff
diff options
context:
space:
mode:
authorThomas Strobel <ts468@cam.ac.uk>2014-08-14 12:42:16 +0200
committerThomas Strobel <ts468@cam.ac.uk>2014-08-14 12:42:16 +0200
commit1da35629cc4c21dcd45ea4d07df2b69325b526d3 (patch)
treeb6ff9f3e37ac6b78a9a41d604e4e494cd9f3b897
parentb63b8260b5e4acc48d6ee62531265e38eb7a2513 (diff)
downloadnixlib-1da35629cc4c21dcd45ea4d07df2b69325b526d3.tar
nixlib-1da35629cc4c21dcd45ea4d07df2b69325b526d3.tar.gz
nixlib-1da35629cc4c21dcd45ea4d07df2b69325b526d3.tar.bz2
nixlib-1da35629cc4c21dcd45ea4d07df2b69325b526d3.tar.lz
nixlib-1da35629cc4c21dcd45ea4d07df2b69325b526d3.tar.xz
nixlib-1da35629cc4c21dcd45ea4d07df2b69325b526d3.tar.zst
nixlib-1da35629cc4c21dcd45ea4d07df2b69325b526d3.zip
Cleanup: remove newlines.
-rw-r--r--nixos/modules/services/hardware/thermald.nix12
1 files changed, 0 insertions, 12 deletions
diff --git a/nixos/modules/services/hardware/thermald.nix b/nixos/modules/services/hardware/thermald.nix
index d197c723d558..5233794a20cc 100644
--- a/nixos/modules/services/hardware/thermald.nix
+++ b/nixos/modules/services/hardware/thermald.nix
@@ -4,37 +4,25 @@ 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";
     };
-
   };
-
 }