diff options
Diffstat (limited to 'home-config/home-configuration.scm')
-rw-r--r-- | home-config/home-configuration.scm | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/home-config/home-configuration.scm b/home-config/home-configuration.scm index ab063b2..6819dee 100644 --- a/home-config/home-configuration.scm +++ b/home-config/home-configuration.scm @@ -16,9 +16,11 @@ (gnu home services gnupg) (gnu home services) (home-services pipewire) + (home-packages shells) (home-packages mozillia) (home-packages vim) (home-packages gnome-xyz) + (home-packages shells) (home-packages audio)) @@ -82,7 +84,11 @@ "tree-sitter-cli" "python-pynvim")) - (list neovim-new easyeffects firefox-wayland-new lavanda-gtk-theme))) + (list neovim-new + easyeffects + firefox-wayland-new + lavanda-gtk-theme + zsh-autosuggestions))) ;; Below is the list of Home services. To search for available ;; services, run 'guix home search KEYWORD' in a terminal. @@ -119,8 +125,8 @@ (".local/share/icons" ,(local-file "icons" #:recursive? #t)) (".gtkrc-2.0" ,(local-file "gtk/gtkrc-2.0")) (".nix-channels" ,(local-file "nix-channels")) - (".gitconfig" ,(local-file "git/gitconfig")) - (".zsh/zsh-autosuggestions" ,(local-file "zsh/zsh-autosuggestions" #:recursive? #t)))) + (".gitconfig" ,(local-file "git/gitconfig")))) + ;;(".zsh/zsh-autosuggestions" ,(local-file "zsh/zsh-autosuggestions" #:recursive? #t)))) (service home-pipewire-service-type) (service home-dbus-service-type) @@ -129,5 +135,4 @@ (pinentry-program (file-append pinentry "/bin/pinentry")) (ssh-support? #t))) - ))) |