dotfiles/modules/home-manager/bin.nix

10 lines
149 B
Nix
Raw Normal View History

{ self, ... }:
{
2024-05-04 20:52:21 +00:00
home.sessionPath = [ "$HOME/.local/bin" ];
2024-03-16 22:12:53 +00:00
2024-05-04 20:52:21 +00:00
home.file.".local/bin" = {
2024-03-17 00:28:38 +00:00
source = "${self}/bin";
2024-03-16 22:12:53 +00:00
recursive = true;
};
}