Move bin into my .local directory

This commit is contained in:
Oliver Davies 2024-05-04 21:52:21 +01:00
parent e3dda9ade8
commit 7beeb924f7

View file

@ -1,7 +1,7 @@
{ self, ... }: {
home.sessionPath = [ "$HOME/bin" ];
home.sessionPath = [ "$HOME/.local/bin" ];
home.file.bin = {
home.file.".local/bin" = {
source = "${self}/bin";
recursive = true;
};