diff options
Diffstat (limited to '')
-rw-r--r-- | home/config.scm | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/home/config.scm b/home/config.scm index 0df9d00..dd9a6cf 100644 --- a/home/config.scm +++ b/home/config.scm @@ -42,7 +42,11 @@ #:use-module (gnu home services fontutils) #:use-module (gnu home services dotfiles) #:use-module (gnu home services gnupg) + #:use-module (gnu home services desktop) #:use-module (gnu packages ssh) + #:use-module (gnu packages pdf) + #:use-module (gnu packages texinfo) + #:use-module (gnu packages man) #:use-module (guix gexp) #:use-module (guix packages) #:use-module (guix download) @@ -67,6 +71,14 @@ fd recutils unzip + inxi + alsa-utils + + texinfo + man-db + man-pages + mandoc + go binutils @@ -82,12 +94,18 @@ emacs-geiser emacs-geiser-guile emacs-pinentry + emacs-pdf-tools + emacs-alsamixer-el mu msmtp emacs aspell aspell-dict-en - + + xf86-input-libinput + xf86-video-fbdev + xf86-video-nouveau + gnupg age pinentry @@ -112,6 +130,11 @@ (bash-profile (list (local-file "./profile"))) (bashrc (list (local-file "./bashrc"))))) + (service home-startx-command-service-type) + (service home-xmodmap-service-type + (home-xmodmap-configuration + (key-map '(("remove Lock" . "Caps_Lock") + ("keysym Caps_Lock" . "Control_L"))))) (service home-gpg-agent-service-type (home-gpg-agent-configuration |