10 lines
202 B
Nix
Raw Normal View History

2022-05-06 09:29:25 -04:00
{ config, ... }: {
home-manager.users.${config.user}.programs.direnv = {
enable = true;
nix-direnv.enable = true;
2022-05-29 13:44:45 -04:00
config = { whitelist = { prefix = [ config.dotfilesPath ]; }; };
2022-05-06 09:29:25 -04:00
};
}