diff --git a/nix/modules/home-manager/bin.nix b/nix/modules/home-manager/bin.nix index 11519c2..43864ae 100644 --- a/nix/modules/home-manager/bin.nix +++ b/nix/modules/home-manager/bin.nix @@ -1,9 +1,9 @@ { self, ... }: { - home.sessionPath = [ "$HOME/.local/bin" ]; + home.sessionPath = [ "$HOME/bin" ]; - home.file.".local/bin" = { - source = "${self}/nix/bin"; + home.file."bin" = { + source = "${self}/bin"; recursive = true; }; }