diff options
| author | Tyler Murphy <tylerm@tylerm.dev> | 2023-09-06 12:39:00 -0400 |
|---|---|---|
| committer | Tyler Murphy <tylerm@tylerm.dev> | 2023-09-06 12:39:00 -0400 |
| commit | 426df5d5095b0eb6ec763fc11343f2097bd53803 (patch) | |
| tree | ffd786248ab99e2e219c53007623b696f5f9975c /home-config | |
| parent | men (diff) | |
| download | dotfiles-guix-426df5d5095b0eb6ec763fc11343f2097bd53803.tar.gz dotfiles-guix-426df5d5095b0eb6ec763fc11343f2097bd53803.tar.bz2 dotfiles-guix-426df5d5095b0eb6ec763fc11343f2097bd53803.zip | |
refactor
Diffstat (limited to 'home-config')
| -rw-r--r-- | home-config/home-configuration.scm | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/home-config/home-configuration.scm b/home-config/home-configuration.scm index 372eb0f..0270199 100644 --- a/home-config/home-configuration.scm +++ b/home-config/home-configuration.scm @@ -6,7 +6,6 @@ (use-modules (gnu home) (gnu packages) - (gnu packages vim) (gnu packages gcc) (gnu packages gnupg) (gnu packages virtualization) @@ -19,14 +18,9 @@ (gnu home services) (home-services pipewire) (home-packages mozillia) + (home-packages vim) (home-packages audio)) -(define my-neovim - (package - (inherit neovim) - (native-inputs - (modify-inputs (package-native-inputs neovim) - (prepend gcc-12))))) (home-environment ;; Below is the list of packages that will show up in your @@ -77,7 +71,7 @@ "tree-sitter-cli" "python-pynvim")) - (list my-neovim easyeffects firefox-wayland-new))) + (list neovim-new easyeffects firefox-wayland-new))) ;; Below is the list of Home services. To search for available ;; services, run 'guix home search KEYWORD' in a terminal. @@ -86,6 +80,7 @@ (home-zsh-configuration (zshrc (list (local-file "zsh/zshrc"))) (zprofile (list (local-file "zsh/zprofile"))))) + (service home-xdg-configuration-files-service-type `(("nvim/init.vim" ,(local-file "nvim/init.vim")) ("sway" ,(local-file "sway" #:recursive? #t)) |