diff options
author | bd <bdunahu@colostate.edu> | 2024-05-22 19:55:20 -0600 |
---|---|---|
committer | bd <bdunahu@colostate.edu> | 2024-05-22 19:55:20 -0600 |
commit | e3fc4ba63a0bd6cb546549ef4c8eb2778c417d4d (patch) | |
tree | 3d3f40192b66b8ee28839c9c6916d79ce7e469b6 | |
parent | 23463f4db6ca1d3d1549b9ca46dcd01deb99a327 (diff) |
Push new xorg changes to hati
-rw-r--r-- | .config/guix/hati.scm | 4 | ||||
-rw-r--r-- | .config/guix/modules/ymir.scm | 5 |
2 files changed, 6 insertions, 3 deletions
diff --git a/.config/guix/hati.scm b/.config/guix/hati.scm index 3684100..8124afa 100644 --- a/.config/guix/hati.scm +++ b/.config/guix/hati.scm @@ -15,6 +15,7 @@ #:use-module (shell) #:use-module (ssh) #:use-module (gpg) + #:use-module (xserver) #:use-module (base)) @@ -58,7 +59,8 @@ ,@shell-service ,@ssh-service ,@gpg-service - ,@base-services)))) + ,@base-services + ,@xorg-services)))) (if (getenv "RUNNING_GUIX_HOME") home system) diff --git a/.config/guix/modules/ymir.scm b/.config/guix/modules/ymir.scm index 6c845cb..acea4b7 100644 --- a/.config/guix/modules/ymir.scm +++ b/.config/guix/modules/ymir.scm @@ -131,8 +131,9 @@ (service elogind-service-type (elogind-configuration (handle-power-key 'hibernate) - (idle-action-seconds (* 5 60)) - (idle-action 'suspend))) + ;; (idle-action-seconds (* 5 60)) + ;; (idle-action 'suspend) + )) (service dbus-root-service-type) (service ntp-service-type) |