flake/users/guanranwang/home-manager/profiles/graphical-stuff/nixos/scripts/default.nix

9 lines
153 B
Nix
Raw Normal View History

2023-11-25 09:02:50 +00:00
{...}: {
home.sessionPath = ["$HOME/.local/bin"];
home.file.".local/bin" = {
source = ./bin;
recursive = true;
executable = true;
};
}