10 lines
174 B
Nix
10 lines
174 B
Nix
{
|
|
home-manager.users.opdavies.home = {
|
|
sessionPath = [ "$HOME/.local/bin" ];
|
|
|
|
file.".local/bin" = {
|
|
source = ./scripts;
|
|
recursive = true;
|
|
};
|
|
};
|
|
}
|