From 76c3fac834959fc48a3dc951fdee3af8b294ec24 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Thu, 13 Nov 2025 12:01:49 +0100 Subject: [PATCH] chore(nixbuild): update fish path initialization key - Replaced `programs.fish.loginShellInit` with `programs.fish.shellInit` for aligning key usage. - Ensures proper Nix path initialization across fish shell sessions. --- systems/nixbuild.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systems/nixbuild.nix b/systems/nixbuild.nix index 3bdb74e..54ec7be 100644 --- a/systems/nixbuild.nix +++ b/systems/nixbuild.nix @@ -42,7 +42,7 @@ }; # Ensure Nix is in PATH for SSH sessions - programs.fish.loginShellInit = '' + programs.fish.shellInit = '' set -gx PATH /nix/var/nix/profiles/default/bin $PATH set -gx PATH /run/current-system/sw/bin $PATH '';