guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#55000] [PATCH] gnu: Fix incorrect path in home-fish-service


From: Maya
Subject: [bug#55000] [PATCH] gnu: Fix incorrect path in home-fish-service
Date: Sun, 17 Apr 2022 19:05:48 +0000

I haven't found any info on this and I wasn't sure if I should open a bug 
report. I believe this is a bug in the home-fish-service, as guix home copies 
the configuration file to "~/config/fish/config.fish" but the path where fish 
looks for is "~/.config/fish/config.fish"

Other than that it functions correctly, it must've been a mistake as one rarely 
changes this file and once in the right place, it works perfectly. Without it 
though, the guix home is non-functional.

Regards,
Maya
---
 gnu/home/services/shells.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/home/services/shells.scm b/gnu/home/services/shells.scm
index d96c951cd8..fd0a8397f6 100644
--- a/gnu/home/services/shells.scm
+++ b/gnu/home/services/shells.scm
@@ -586,7 +586,7 @@ (define-configuration home-fish-configuration
    serialize-fish-abbreviations))

 (define (fish-files-service config)
-  `(("config/fish/config.fish"
+  `((".config/fish/config.fish"
      ,(mixed-text-file
        "fish-config.fish"
        #~(string-append "\
--
2.35.1





reply via email to

[Prev in Thread] Current Thread [Next in Thread]