dotfiles/components/hm/direnv.nix
RingOfStorms (Joshua Bell) eaa2e08f5d user specifics
2024-12-29 01:21:06 -06:00

18 lines
314 B
Nix

{ ... }:
{
programs.direnv = {
enable = true;
enableZshIntegration = true;
config = {
nix-direnv = true;
global = {
strict_env = true;
load_dotenv = true;
hide_env_diff = true;
};
whitelist = {
prefix = [ "~/projects" ];
};
};
};
}