flake/users/guanranwang/home-manager/profiles/graphical-stuff/nixos/scripts/default.nix
2023-11-28 12:12:13 +08:00

8 lines
153 B
Nix

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