nixdots/home/programs/terminal/tools/direnv.nix

11 lines
187 B
Nix
Raw Permalink Normal View History

2024-06-30 18:22:43 +00:00
{pkgs, ...}: {
home.sessionVariables = {
2024-07-26 23:07:07 +00:00
DIRENV_LOG_FORMAT = "";
2024-06-30 18:22:43 +00:00
};
programs.direnv = {
enable = true;
nix-direnv.enable = true;
enableZshIntegration = true;
};
}