From a2304baad837c08db7c675d107f3f0b6ff0082b7 Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Mon, 29 Sep 2025 17:20:53 -0400 Subject: [PATCH] nix: Fix NixOS sudo wrapper path with explanatory comment --- modules/home/all/nix.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/home/all/nix.nix b/modules/home/all/nix.nix index 9c178e8..0e718ed 100644 --- a/modules/home/all/nix.nix +++ b/modules/home/all/nix.nix @@ -9,7 +9,7 @@ # Normally, we do this on macOS only. And it is not necessary on NixOS. Yet, # non-NixOS Linux will need it (when using the official Nix installer). home.sessionPath = [ - "/run/wrappers/bin" + "/run/wrappers/bin" # Workaround NixOS upstream sudo fuckery "/etc/profiles/per-user/$USER/bin" "/nix/var/nix/profiles/system/sw/bin" "$HOME/.nix-profile/bin"