flake/users/guanranwang/home-manager/modules/wm/components/scripts.nix

11 lines
202 B
Nix
Raw Normal View History

2023-11-09 17:14:03 +00:00
{...}: {
2023-11-14 03:22:17 +00:00
# TODO: remove unnecessary scripts
2023-11-09 17:14:03 +00:00
home.sessionPath = ["$HOME/.local/bin"];
home.file = {
".local/bin" = {
2023-11-14 03:22:17 +00:00
source = ../../../dotfiles/bin;
2023-11-09 17:14:03 +00:00
recursive = true;
};
};
}