12 lines
163 B
Nix
12 lines
163 B
Nix
|
{
|
||
|
programs.direnv = {
|
||
|
enable = true;
|
||
|
nix-direnv.enable = true;
|
||
|
};
|
||
|
|
||
|
nix.extraOptions = ''
|
||
|
keep-outputs = true
|
||
|
keep-derivations = true
|
||
|
'';
|
||
|
}
|