16 lines
316 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
};
2023-03-08 17:43:30 -05:00
# Prevent garbage collection
nix.extraOptions = ''
keep-outputs = true
keep-derivations = true
'';
2022-05-06 09:29:25 -04:00
}