From c3dd3b8465c7520353542659aa836408325099ea Mon Sep 17 00:00:00 2001 From: Luis Guilherme Coelho Date: Thu, 6 Mar 2025 21:18:04 -0300 Subject: gnu: fish: Add support for guix home profile. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/shells.scm (fish)[arguments]<#:phases> {patch-fish-extra-paths}: Add `~/.guix-home/profile' to `__guix_profile_paths'. Change-Id: If896cfc4f948d86c52073235a6f4a2c1d085e7a6 Signed-off-by: Ludovic Courtès --- gnu/packages/shells.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm index 63bdf69705..e177a90de0 100644 --- a/gnu/packages/shells.scm +++ b/gnu/packages/shells.scm @@ -223,10 +223,10 @@ (define-public fish (string-append "\n\n" "# Patched by Guix.\n" - "# Enable completions, functions and configurations in user's" - " and system's guix profiles by adding them to __extra_*" + "# Enable completions, functions and configurations in user's," + " home's and system's guix profiles by adding them to __extra_*" " variables.\n" - "set -l __guix_profile_paths ~/.guix-profile" + "set -l __guix_profile_paths ~/.guix-profile ~/.guix-home/profile" " /run/current-system/profile\n" "set __extra_completionsdir" " $__guix_profile_paths\"/etc/fish/completions\"" -- cgit v1.2.3