summaryrefslogtreecommitdiffstats
path: root/.config/guix/system/chaman.scm
diff options
context:
space:
mode:
Diffstat (limited to '.config/guix/system/chaman.scm')
-rw-r--r--.config/guix/system/chaman.scm8
1 files changed, 5 insertions, 3 deletions
diff --git a/.config/guix/system/chaman.scm b/.config/guix/system/chaman.scm
index 4e016f5..831d9eb 100644
--- a/.config/guix/system/chaman.scm
+++ b/.config/guix/system/chaman.scm
@@ -1,4 +1,6 @@
(use-modules (gnu)
+ (gnu packages certs) ; for nss-certs
+ (gnu packages emacs-xyz) ; for exwm
(gnu packages linux)) ; for powertop
(use-service-modules admin desktop mail networking pm ssh xorg)
@@ -45,9 +47,9 @@
'("wheel" "netdev" "audio" "video")))
%base-user-accounts))
(packages
- (append
- (list (specification->package "nss-certs"))
- %base-packages))
+ (cons* nss-certs
+ emacs-exwm
+ %base-packages))
(services
(cons*
(service xfce-desktop-service-type)