diff options
author | Ryan Schanzenbacher <ryan@rschanz.org> | 2024-04-10 20:13:45 -0400 |
---|---|---|
committer | Ryan Schanzenbacher <ryan@rschanz.org> | 2024-04-10 20:13:45 -0400 |
commit | 9026be364d5e7ec04c739bfbc5fcc20b03bddf43 (patch) | |
tree | 486c2ca7e1a0fd15739be9d37dd7774b62fb948a /home-config/home-configuration.scm | |
parent | b88d77fb2d0d5028a6f5670695dee6bec129501f (diff) |
FISH
Diffstat (limited to 'home-config/home-configuration.scm')
-rw-r--r-- | home-config/home-configuration.scm | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/home-config/home-configuration.scm b/home-config/home-configuration.scm index 4dac5b1..316f12a 100644 --- a/home-config/home-configuration.scm +++ b/home-config/home-configuration.scm | |||
@@ -18,6 +18,7 @@ | |||
18 | (gnu home services) | 18 | (gnu home services) |
19 | (ryan-services pipewire) | 19 | (ryan-services pipewire) |
20 | (ryan-services spotify) | 20 | (ryan-services spotify) |
21 | (ryan-services file-manager) | ||
21 | (ryan-config utils) | 22 | (ryan-config utils) |
22 | (ryan-packages freedesktop) | 23 | (ryan-packages freedesktop) |
23 | (ryan-packages calcurse) | 24 | (ryan-packages calcurse) |
@@ -30,6 +31,11 @@ | |||
30 | (modify-inputs (package-native-inputs neovim) | 31 | (modify-inputs (package-native-inputs neovim) |
31 | (prepend gcc-12))))) | 32 | (prepend gcc-12))))) |
32 | 33 | ||
34 | (define %home-symlinks | ||
35 | `((".config/guix/home-config/fish/fish_variables" ".config/fish/fish_variables"))) | ||
36 | |||
37 | (home-symlinks %home-symlinks) | ||
38 | |||
33 | (home-environment | 39 | (home-environment |
34 | ;; Below is the list of packages that will show up in your | 40 | ;; Below is the list of packages that will show up in your |
35 | ;; Home profile, under ~/.guix-home/profile. | 41 | ;; Home profile, under ~/.guix-home/profile. |
@@ -125,10 +131,10 @@ | |||
125 | (services | 131 | (services |
126 | (list (service home-bash-service-type | 132 | (list (service home-bash-service-type |
127 | (home-bash-configuration | 133 | (home-bash-configuration |
128 | (aliases '(("grep" . "grep --color=auto") ("ll" . "ls -l") | 134 | ;(aliases '(("grep" . "grep --color=auto") ("ll" . "ls -l") |
129 | ("ls" . "ls -p --color=auto") | 135 | ; ("ls" . "ls -p --color=auto") |
130 | ("spt" . "spotify_player") | 136 | ; ("spt" . "spotify_player") |
131 | ("python" . "python3"))) | 137 | ; ("python" . "python3"))) |
132 | (bashrc (list (local-file | 138 | (bashrc (list (local-file |
133 | "bashrc"))) | 139 | "bashrc"))) |
134 | (bash-profile (list (local-file | 140 | (bash-profile (list (local-file |
@@ -144,6 +150,7 @@ | |||
144 | ("fish/conf.d" ,(local-file "fish/conf.d" #:recursive? #t)) | 150 | ("fish/conf.d" ,(local-file "fish/conf.d" #:recursive? #t)) |
145 | ("fish/fish_plugins" ,(local-file "fish/fish_plugins")) | 151 | ("fish/fish_plugins" ,(local-file "fish/fish_plugins")) |
146 | ("fish/functions" ,(local-file "fish/functions" #:recursive? #t)) | 152 | ("fish/functions" ,(local-file "fish/functions" #:recursive? #t)) |
153 | ("fish/config.fish" ,(local-file "fish/config.fish")) | ||
147 | ("pulse/client.conf" ,(local-file "pulseaudio/client.conf")) | 154 | ("pulse/client.conf" ,(local-file "pulseaudio/client.conf")) |
148 | ("waybar" ,(local-file "waybar" #:recursive? #t)) | 155 | ("waybar" ,(local-file "waybar" #:recursive? #t)) |
149 | ("alacritty" ,(local-file "alacritty" #:recursive? #t)) | 156 | ("alacritty" ,(local-file "alacritty" #:recursive? #t)) |
@@ -162,7 +169,7 @@ | |||
162 | (service home-pipewire-service-type) | 169 | (service home-pipewire-service-type) |
163 | (service home-spotifyd-service-type) | 170 | (service home-spotifyd-service-type) |
164 | (service home-dbus-service-type) | 171 | (service home-dbus-service-type) |
165 | ;;; trying some changes | 172 | ;;; trying some changes |
166 | ;(template-files "." | 173 | ;(template-files "." |
167 | ;'("spotify-player/app.toml" | 174 | ;'("spotify-player/app.toml" |
168 | ;;; | 175 | ;;; |