dotfiles/lib/shared/modules/bin.nix

9 lines
146 B
Nix
Raw Normal View History

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