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

9 lines
162 B
Nix

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