dotfiles/nix/modules/home-manager/features/cli/bin.nix

10 lines
135 B
Nix
Raw Normal View History

{ self, ... }:
{
2024-11-25 08:03:59 +00:00
home.sessionPath = [ "$HOME/bin" ];
2024-03-16 22:12:53 +00:00
2024-11-25 08:03:59 +00:00
home.file."bin" = {
source = "${self}/bin";
2024-03-16 22:12:53 +00:00
recursive = true;
};
}