10 lines
202 B
Nix
10 lines
202 B
Nix
{...}: {
|
|
# TODO: remove unnecessary scripts
|
|
home.sessionPath = ["$HOME/.local/bin"];
|
|
home.file = {
|
|
".local/bin" = {
|
|
source = ../../../dotfiles/bin;
|
|
recursive = true;
|
|
};
|
|
};
|
|
}
|