14 lines
236 B
Nix
14 lines
236 B
Nix
{ pkgs, config, ... }:
|
|
|
|
{
|
|
programs.direnv = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
nix-direnv.enable = true;
|
|
};
|
|
|
|
home.sessionVariables = {
|
|
DIRENV_CACHE = "${config.home.homeDirectory}/.cache/direnv";
|
|
};
|
|
}
|