diff options
author | Bastien Rivière <me@babariviere.com> | 2022-04-26 19:31:11 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-04-29 18:07:16 +0200 |
commit | 2c408520f59ce7a2638dccab7017e2fcb41292a0 (patch) | |
tree | 7eaee9e6e1ee442217ad00b6b11955ae3920885e /gnu/home/services | |
parent | 9d7248cd87fbda8c717341a8092780782bef0820 (diff) |
home: shells: Migrate fish to xdg-configuration-files.
* gnu/home/services/shells.scm (home-fish-service-type): Use new
xdg-configuration-files-service-type service.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/home/services')
-rw-r--r-- | gnu/home/services/shells.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/home/services/shells.scm b/gnu/home/services/shells.scm index fd0a8397f6..fd5a66090d 100644 --- a/gnu/home/services/shells.scm +++ b/gnu/home/services/shells.scm @@ -586,7 +586,7 @@ when typed in the shell, will automatically expand to the full text." serialize-fish-abbreviations)) (define (fish-files-service config) - `((".config/fish/config.fish" + `(("fish/config.fish" ,(mixed-text-file "fish-config.fish" #~(string-append "\ @@ -650,7 +650,7 @@ end\n\n") (service-type (name 'home-fish) (extensions (list (service-extension - home-files-service-type + home-xdg-configuration-files-service-type fish-files-service) (service-extension home-profile-service-type |