nix-config/modules/home-manager/cli/scripts/default.nix

11 lines
146 B
Nix
Raw Normal View History

2025-03-29 23:34:25 +00:00
{
home = {
2025-03-29 23:34:25 +00:00
sessionPath = [ "$HOME/.local/bin" ];
file.".local/bin" = {
source = ./scripts;
recursive = true;
};
};
}