guix: add rottlog, thermald, tlp, and powertop to chaman
authorAmin Bandali <mab@gnu.org>
Fri, 24 Jan 2020 20:14:12 +0000 (15:14 -0500)
committerAmin Bandali <mab@gnu.org>
Fri, 24 Jan 2020 20:14:12 +0000 (15:14 -0500)
.config/guix/system/chaman.scm

index e17d465..4e016f5 100644 (file)
@@ -1,5 +1,6 @@
-(use-modules (gnu))
-(use-service-modules desktop mail networking ssh xorg)
+(use-modules (gnu)
+             (gnu packages linux))      ; for powertop
+(use-service-modules admin desktop mail networking pm ssh xorg)
 
 (operating-system
  (host-name "chaman")
      (passdbs (list (passdb-configuration
                      (driver "passwd-file")
                      (args (list "/data/dovecot-passwd")))))))
+   (service rottlog-service-type)
+   (service thermald-service-type)
+   (service tlp-service-type
+            (tlp-configuration
+             (cpu-boost-on-ac? #t)
+             (sound-power-save-on-bat 0)
+             (sound-power-save-controller? #f)
+             ;; (usb-blacklist "0e8f:00a8") ;for some reason doesn't seem to work
+             (usb-autosuspend? #f)))
+   (simple-service 'my-powertop-auto-tune activation-service-type
+                   #~(zero? (system* #$(file-append powertop "/sbin/powertop")
+                                     "--auto-tune")))
    %desktop-services)))