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

11 lines
187 B
Nix
Raw Normal View History

2024-06-30 20:22:43 +02:00
{pkgs, ...}: {
home.sessionVariables = {
2024-07-27 01:07:07 +02:00
DIRENV_LOG_FORMAT = "";
2024-06-30 20:22:43 +02:00
};
programs.direnv = {
enable = true;
nix-direnv.enable = true;
enableZshIntegration = true;
};
}