diff options
author | Amin Bandali <mab@gnu.org> | 2020-01-24 15:14:12 -0500 |
---|---|---|
committer | Amin Bandali <mab@gnu.org> | 2020-01-24 15:14:12 -0500 |
commit | 501ef66577e7de4f6516f359ca7313e5837ac626 (patch) | |
tree | 897d07970cef4c09b46618a004ac75dcf3723149 | |
parent | 946188e1d6c6ba713f3d34a25c21b395234b043f (diff) | |
download | configs-501ef66577e7de4f6516f359ca7313e5837ac626.tar.gz configs-501ef66577e7de4f6516f359ca7313e5837ac626.tar.xz configs-501ef66577e7de4f6516f359ca7313e5837ac626.zip |
guix: add rottlog, thermald, tlp, and powertop to chaman
-rw-r--r-- | .config/guix/system/chaman.scm | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/.config/guix/system/chaman.scm b/.config/guix/system/chaman.scm index e17d465..4e016f5 100644 --- a/.config/guix/system/chaman.scm +++ b/.config/guix/system/chaman.scm @@ -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") @@ -71,4 +72,16 @@ (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))) |