dotfiles/nix/modules/home-manager/bin.nix
2024-11-25 08:03:59 +00:00

10 lines
135 B
Nix

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