20 lines
359 B
Nix
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;
|
|
};
|
|
};
|
|
}
|