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

10 lines
146 B
Nix

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