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

10 lines
153 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" = {
source = "${self}/nix/bin";
2024-03-16 22:12:53 +00:00
recursive = true;
};
}