Extract a scripts mixin

This commit is contained in:
Oliver Davies 2025-04-05 11:25:37 +01:00
parent 4bbca3493e
commit 1d284c9432
24 changed files with 3 additions and 32 deletions

View file

@ -0,0 +1,10 @@
{
home-manager.users.opdavies.home = {
sessionPath = [ "$HOME/.local/bin" ];
file.".local/bin" = {
source = ./scripts;
recursive = true;
};
};
}