nixos-config/configurations/direnv.nix
2020-11-13 22:40:55 +01:00

20 lines
359 B
Nix

{ ... }:
{
chvp.zfs.homeLinks = [
{ path = ".local/share/direnv"; type = "cache"; }
];
nix.extraOptions = ''
keep-outputs = true
keep-derivations = true
'';
home-manager.users.charlotte = { ... }: {
programs.direnv = {
enable = true;
enableZshIntegration = true;
enableNixDirenvIntegration = true;
};
};
}