dotfiles/nix/modules/home-manager/bin.nix
Oliver Davies 69a397e624 Move Nix files into a nix directory
Move everything from `config` to the root level.
2024-11-21 08:56:12 +00:00

10 lines
153 B
Nix

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