aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranck Cuny <59291+fcuny@users.noreply.github.com>2025-02-24 08:49:09 -0800
committerFranck Cuny <59291+fcuny@users.noreply.github.com>2025-02-24 19:24:47 -0800
commit9f913767aa4d6f0de4b335a97c01275b620e02b5 (patch)
tree63893f2ee58a6df13c865946bc52088e518f469f
parentMerge pull request #9 from fcuny/update_flake_lock_action (diff)
downloadinfra-9f913767aa4d6f0de4b335a97c01275b620e02b5.tar.gz
add ~/.local/bin to the path
-rw-r--r--nix/users/fcuny/dev.nix5
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"
+ ];
}