direnv: Prefer silent option over $DIRENV_LOG_FORMAT

This actually sets $DIRENV_LOG_FORMAT for us.
This commit is contained in:
Donovan Glover 2024-05-19 23:17:51 -04:00
parent a7cd5bcc3d
commit e96bb70ed7
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 5 additions and 2 deletions

View File

@ -7,7 +7,6 @@
export PATH="$HOME/.local/bin:$PATH"
export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket"
export DIRENV_LOG_FORMAT=""
export GPG_TTY=(tty)

View File

@ -102,7 +102,11 @@ in
programs = {
fish.enable = true;
neovim.enable = true;
direnv.enable = true;
direnv = {
enable = true;
silent = true;
};
};
};
}