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

10 lines
135 B
Nix

{ self, ... }:
{
home.sessionPath = [ "$HOME/bin" ];
home.file."bin" = {
source = "${self}/bin";
recursive = true;
};
}