dotfiles/lib/shared/modules/bin.nix

9 lines
142 B
Nix
Raw Normal View History

2024-03-17 00:28:38 +00:00
{self, ...}: {
2024-03-16 22:12:53 +00:00
home.sessionPath = ["$HOME/.config/bin"];
xdg.configFile.bin = {
2024-03-17 00:28:38 +00:00
source = "${self}/bin";
2024-03-16 22:12:53 +00:00
recursive = true;
};
}