diff options
Diffstat (limited to 'guix/home.scm')
-rw-r--r-- | guix/home.scm | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/guix/home.scm b/guix/home.scm index c3071b3..2a54561 100644 --- a/guix/home.scm +++ b/guix/home.scm @@ -11,6 +11,7 @@ #:use-module (gnu home services shells) #:use-module (gnu home services desktop) #:use-module (gnu home services gnupg) + #:use-module (gnu home services messaging) #:use-module (hecate packages emacs) #:use-module (hecate packages hunspell) #:export (home)) @@ -24,23 +25,21 @@ (define thanos/emacs-packages - '("emacs-pgtk" "emacs-nov-el" "emacs-pdf-tools" "emacs-emms" - "emacs-geiser" "emacs-geiser-guile" "emacs-jabber" "emacs-yeetube" - "emacs-debbugs" "emacs-eshell-git-prompt" "emacs-0x0" "emacs-org-roam" - "emacs-markdown-mode" "emacs-gnosis" "emacs-notmuch")) + '("emacs-next-pgtk" "emacs-nov-el" "emacs-pdf-tools" "emacs-emms" + "emacs-geiser" "emacs-geiser-guile" "emacs-notmuch" "emacs-password-store" + "emacs-debbugs" "emacs-0x0" "emacs-emojify")) (define thanos/python-packages '("python-next" "python-pip" "python-lsp-server" "python-numpy")) (home-environment (packages (specifications->packages - (append '("perl" "yt-dlp" "icecat" "gcc-toolchain" "wl-clipboard" "sqlite" - "hyfetch" "transmission" "isync" "mpv" "steam" "signal-desktop" - "git" "fuzzel" "wl-clipboard" "alacritty" "password-store" "curl" "dino" - "bind" "nmap" "hunspell" "wtype" "hunspell-dict-en-med" "hunspell-dict-el" - "mlocate" "rsync" "grimshot" "nyxt" "swayidle" "wl-clipboard" "htop" - "net-tools" "gnupg" "texlive" "texlive-collection-latexrecommended" - "notmuch" "hunspell-dict-en-us" "sbcl" "xkeyboard-config") + (append '("perl" "yt-dlp" "torbrowser" "icecat" "sbcl" "notmuch" "hunspell-dict-en" + "gcc-toolchain" "sqlite" "hyfetch" "transmission" "isync" "mpv" + "steam" "signal-desktop" "git" "fuzzel" "alacritty" "password-store" + "curl" "dino" "bind" "nmap" "hunspell" "wtype" "hunspell-dict-en-med" + "hunspell-dict-el" "mlocate" "rsync" "grimshot" "swayidle" "htop" + "net-tools" "gnupg" "texlive" "texlive-collection-latexrecommended") thanos/emacs-packages thanos/python-packages thanos/fonts-packages))) (services (list (service home-bash-service-type |