From e6d96725adfada11acf3916ddfbea51d99a7d56f Mon Sep 17 00:00:00 2001 From: Daniel Fainberg Date: Wed, 8 Jul 2026 10:49:45 +0200 Subject: [PATCH] feat(home): put ~/.local/bin on PATH --- modules/home.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/home.nix b/modules/home.nix index 2689931..d8eddc5 100644 --- a/modules/home.nix +++ b/modules/home.nix @@ -73,6 +73,10 @@ in { imports = [ ./gpg.nix ./media.nix ]; + # Put ~/.local/bin (the XDG user-bin dir) on PATH so hand-dropped scripts run + # by name without wiring each through nix. + home.sessionPath = [ "${config.home.homeDirectory}/.local/bin" ]; + home.sessionVariables = { TERMINAL = terminal; BROWSER = browser;