Add ~/bin to path

This commit is contained in:
BuyMyMojo 2025-03-24 23:46:43 +11:00
parent 7649aed0c9
commit f1d9504b66
Signed by untrusted user who does not match committer: aria
GPG key ID: 19AB7AA462B8AB3B

View file

@ -197,6 +197,7 @@ in
}; };
}; };
programs.bash.enable = true;
programs.fish.enable = true; programs.fish.enable = true;
services.ssh-agent.enable = true; services.ssh-agent.enable = true;
@ -223,6 +224,10 @@ in
NIXPKGS_ALLOW_UNFREE = "1"; NIXPKGS_ALLOW_UNFREE = "1";
}; };
home.sessionPath = [
"/home/buymymojo/bin/"
];
# Let Home Manager install and manage itself. # Let Home Manager install and manage itself.
programs.home-manager.enable = true; programs.home-manager.enable = true;
} }