9 lines
153 B
Nix
9 lines
153 B
Nix
|
{...}: {
|
||
|
home.sessionPath = ["$HOME/.local/bin"];
|
||
|
home.file.".local/bin" = {
|
||
|
source = ./bin;
|
||
|
recursive = true;
|
||
|
executable = true;
|
||
|
};
|
||
|
}
|