properlly use nix-direnv cache

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-01-27 10:56:41 -06:00
parent 16735edf34
commit d43ef6cf70
5 changed files with 15 additions and 10 deletions

View file

@ -3,6 +3,7 @@
programs.direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
config = {
nix-direnv = true;
global = {
@ -11,7 +12,10 @@
hide_env_diff = true;
};
whitelist = {
prefix = [ "~/projects" ];
prefix = [
"~/projects"
"~/.config"
];
};
};
};