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