diff options
| author | Franck Cuny <59291+fcuny@users.noreply.github.com> | 2025-02-24 08:49:09 -0800 |
|---|---|---|
| committer | Franck Cuny <59291+fcuny@users.noreply.github.com> | 2025-02-24 19:24:47 -0800 |
| commit | 9f913767aa4d6f0de4b335a97c01275b620e02b5 (patch) | |
| tree | 63893f2ee58a6df13c865946bc52088e518f469f | |
| parent | Merge pull request #9 from fcuny/update_flake_lock_action (diff) | |
| download | infra-9f913767aa4d6f0de4b335a97c01275b620e02b5.tar.gz | |
add ~/.local/bin to the path
Diffstat (limited to '')
| -rw-r--r-- | nix/users/fcuny/dev.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/nix/users/fcuny/dev.nix b/nix/users/fcuny/dev.nix index 4114228..3c74997 100644 --- a/nix/users/fcuny/dev.nix +++ b/nix/users/fcuny/dev.nix @@ -91,5 +91,8 @@ ]; }; - home.sessionPath = [ config.home.sessionVariables.GOBIN ]; + home.sessionPath = [ + config.home.sessionVariables.GOBIN + "${config.home.homeDirectory}/.local/bin" + ]; } |
