diff options
author | Amin Bandali <mab@gnu.org> | 2020-01-25 20:13:18 -0500 |
---|---|---|
committer | Amin Bandali <mab@gnu.org> | 2020-01-25 20:13:18 -0500 |
commit | c21be729603a719d7b1bf50f551c5214748cba78 (patch) | |
tree | 23ba8b22300180acd3861e05e89babbe8b3e43f0 /.config/guix | |
parent | 74be7f18d68948367de54170342caa7bf5d29a56 (diff) | |
download | configs-c21be729603a719d7b1bf50f551c5214748cba78.tar.gz configs-c21be729603a719d7b1bf50f551c5214748cba78.tar.xz configs-c21be729603a719d7b1bf50f551c5214748cba78.zip |
switch to exwm on chaman
Diffstat (limited to '.config/guix')
-rw-r--r-- | .config/guix/manifest/chaman.scm | 15 | ||||
-rw-r--r-- | .config/guix/system/chaman.scm | 8 |
2 files changed, 18 insertions, 5 deletions
diff --git a/.config/guix/manifest/chaman.scm b/.config/guix/manifest/chaman.scm index b312573..5ba14c6 100644 --- a/.config/guix/manifest/chaman.scm +++ b/.config/guix/manifest/chaman.scm @@ -1,7 +1,9 @@ (specifications->manifest - '("audacity" + '("alsa-utils" + "audacity" "bash-completion" "cvs" + "dunst" "emacs" "emacs-alert" "emacs-async" @@ -13,6 +15,7 @@ "emacs-dash" "emacs-debbugs" "emacs-diff-hl" + "emacs-dmenu" "emacs-doom-themes" "emacs-ebdb" "emacs-emmet-mode" @@ -22,6 +25,8 @@ "emacs-eshell-up" "emacs-exec-path-from-shell" "emacs-expand-region" + "emacs-exwm" + "emacs-exwm-edit" "emacs-flycheck" "emacs-geiser" ;; "emacs-gnus-harvest" @@ -74,20 +79,24 @@ "hunspell" "hunspell-dict-en-ca" "hunspell-dict-en-us" - ;; "icecat" + "icecat" "inkscape" "isync" "mpv" "msmtp" "ncdu" "notmuch" + "openjdk" "openssh" "openssl" "password-store" "pinentry-emacs" "poppler" ; for 'pdffonts' + "rofi" + "rofi-pass" "rsync" "rtv" + "rxvt-unicode" "screen" "setxkbmap" ;; "texlive" @@ -98,4 +107,6 @@ ;; "xkbcomp" "xmodmap" "xrdb" + "xset" + "xsetroot" "youtube-dl")) 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) |