Fix bin path

This commit is contained in:
Oliver Davies 2024-11-25 08:03:59 +00:00
parent bb73c19448
commit 196b793515

View file

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