dotfiles/lib/shared/modules/bin.nix

9 lines
133 B
Nix
Raw Normal View History

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