diff options
Diffstat (limited to 'guix/home.scm')
-rw-r--r-- | guix/home.scm | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/guix/home.scm b/guix/home.scm index 08fd7ce..38d4f21 100644 --- a/guix/home.scm +++ b/guix/home.scm @@ -20,23 +20,21 @@ ;; Below is the list of packages that will show up in your ;; Home profile, under ~/.guix-home/profile. (packages (specifications->packages - (list "anki" "qtwebengine" "aspell-dict-el" "perl" "tree" - "font-iosevka-aile" "font-jetbrains-mono" "mu" "hyfetch" - "emacs-nov-el" "iptables" "emacs-yeetube" "syncthing" - "ungoogled-chromium" "emacs-pdf-tools" "python-lsp-server" - "transmission" "emacs-pgtk" "mpv" "yt-dlp" "icecat" "dino" - "0ad" "torbrowser" "emacs-elpy" "python-requests" - "python-mypy" "fuzzel" "alacritty" "wtype" "git" "emacs-geiser" - "emacs-geiser-guile" "sbcl" "curl" "libvterm" "emacs-vterm" - "inetutils" "emacs-jabber" "bind" "go" "nmap" "hunspell" - "hunspell-dict-en-us" "pinentry-emacs" "mlocate" "rsync" - "grimshot" "nyxt"))) + (list "anki" "emacs-pgtk" "torbrowser" "mu" "perl" "tree" + "hyfetch" "font-iosevka-aile" "font-jetbrains-mono" "isync" + "emacs-nov-el" "syncthing" "emacs-pdf-tools" "ungoogled-chromium" + "python-lsp-server" "transmission" "mpv" "yt-dlp" "icecat" "dino" + "0ad" "git" "torbrowser" "emacs-elpy" "python-mypy" "fuzzel" + "alacritty" "wtype" "emacs-geiser" "emacs-geiser-guile" + "emacs-ox-haunt" "sbcl" "curl" "emacs-vterm" "emacs-jabber" "bind" + "nmap" "hunspell" "guile-syntax-highlight" "hunspell-dict-en-us" + "mlocate" "rsync" "grimshot" "nyxt" "haunt"))) ;; Below is the list of Home services. To search for available ;; services, run 'guix home search KEYWORD' in a terminal. (services (list (service home-bash-service-type (home-bash-configuration - (guix-defaults? #f) + (guix-defaults? #t) (aliases '(("ga" . "git add") ("gaa" . "git add .") ("gc" . "git commit -m") @@ -53,7 +51,7 @@ ("weather" . "curl wttr.in") ("ytd" . "yt-dlp") ("gx" . "guix"))) - (bashrc (list (local-file "/home/thanos/dotfiles/bash-base.sh" #:recursive? #t))))) + (bashrc (list (local-file "/home/thanos/dotfiles/bash-prompt.sh" #:recursive? #f))))) (service home-dotfiles-service-type (home-dotfiles-configuration (directories '("/home/thanos/dotfiles/")) |