dotfiles/common/_home_manager/mods/direnv.nix
RingOfStorms (Joshua Bell) 70b4ac8481 update ndr alias
2025-03-19 22:11:13 -05:00

22 lines
384 B
Nix

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