about summary refs log tree commit diff
path: root/users
diff options
context:
space:
mode:
Diffstat (limited to 'users')
-rw-r--r--users/fcuny/devel/go.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/users/fcuny/devel/go.nix b/users/fcuny/devel/go.nix
index 647da39..d4f1e7b 100644
--- a/users/fcuny/devel/go.nix
+++ b/users/fcuny/devel/go.nix
@@ -1,8 +1,10 @@
-{
+{ config, ... }: {
   programs.go = {
     enable = true;
     goPath = ".local/share/pkg.go";
     goBin = ".local/bin.go";
     goPrivate = [ "git.fcuny.net" "golang.fcuny.net" ];
   };
+
+  home.sessionPath = [ config.home.sessionVariables.GOBIN ];
 }