flake/users/guanranwang/home-manager/modules/wm/components/scripts.nix
2023-11-15 20:55:27 +08:00

10 lines
202 B
Nix

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