don't garbage collect direnv flakes

This commit is contained in:
Noah Masur 2023-03-08 17:43:30 -05:00
parent 4d38d1094f
commit bf4be11718

View File

@ -6,4 +6,10 @@
config = { whitelist = { prefix = [ config.dotfilesPath ]; }; };
};
# Prevent garbage collection
nix.extraOptions = ''
keep-outputs = true
keep-derivations = true
'';
}