diff options
author | Amin Bandali <bandali@gnu.org> | 2019-08-05 20:46:25 -0400 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2019-08-05 21:00:00 -0400 |
commit | 4a72cb41c2cf0e575de05302de7723d26f00f8b6 (patch) | |
tree | 98beced477f7a049bce0755efa6ece0e7c9a1ac3 | |
parent | 65643ac862d8c98a970b36edcef58f83e05d31d4 (diff) | |
download | configs-4a72cb41c2cf0e575de05302de7723d26f00f8b6.tar.gz configs-4a72cb41c2cf0e575de05302de7723d26f00f8b6.tar.xz configs-4a72cb41c2cf0e575de05302de7723d26f00f8b6.zip |
guix: add rottlog, thermald, tlp, and powertop --auto-tune
Diffstat (limited to '')
-rw-r--r-- | .config/guix/system/chaman.scm | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/.config/guix/system/chaman.scm b/.config/guix/system/chaman.scm index beddfa6..c576209 100644 --- a/.config/guix/system/chaman.scm +++ b/.config/guix/system/chaman.scm @@ -1,5 +1,5 @@ -(use-modules (gnu)) -(use-service-modules desktop mail networking ssh xorg) +(use-modules (gnu) (gnu packages linux)) +(use-service-modules admin desktop mail networking pm ssh xorg) (operating-system (host-name "chaman") @@ -59,5 +59,17 @@ (args (list "uid=bandali" "gid=users" "home=/home/bandali/mail/%d/%n"))))) (passdbs (list (passdb-configuration (driver "passwd-file") - (args (list "/home/bandali/.config/dovecot/passwd")))))))) + (args (list "/home/bandali/.config/dovecot/passwd"))))))) + (service rottlog-service-type + (rottlog-configuration)) + (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"))) + (simple-service 'my-powertop-auto-tune activation-service-type + #~(zero? (system* #$(file-append powertop "/sbin/powertop") + "--auto-tune")))) %desktop-services))) |