nix-config/modules/mixins/scripts/default.nix

11 lines
174 B
Nix
Raw Normal View History

2025-03-29 23:34:25 +00:00
{
2025-04-05 11:25:37 +01:00
home-manager.users.opdavies.home = {
2025-03-29 23:34:25 +00:00
sessionPath = [ "$HOME/.local/bin" ];
file.".local/bin" = {
source = ./scripts;
recursive = true;
};
};
}