Disable direnv logging with direnv.silent

This commit is contained in:
Oliver Davies 2024-12-26 00:13:42 +00:00
parent be93343023
commit 9a10b7017b
2 changed files with 3 additions and 1 deletions

View file

@ -73,7 +73,6 @@ in
); );
home.sessionVariables = { home.sessionVariables = {
DIRENV_LOG_FORMAT = "";
EDITOR = "nvim"; EDITOR = "nvim";
LANG = "en_GB.UTF-8"; LANG = "en_GB.UTF-8";
LC_ALL = "en_GB.UTF-8"; LC_ALL = "en_GB.UTF-8";

View file

@ -9,7 +9,10 @@ with lib;
programs.direnv = { programs.direnv = {
enable = true; enable = true;
enableZshIntegration = true; enableZshIntegration = true;
nix-direnv.enable = true; nix-direnv.enable = true;
silent = true;
}; };
}; };
} }