dotfiles/modules/home-manager/bin.nix

10 lines
149 B
Nix

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