1
Fork 0
satellite/home/adrielus/features/cli/direnv.nix

12 lines
233 B
Nix
Raw Normal View History

2023-01-15 21:37:30 +01:00
{
programs.direnv.enable = true;
programs.nix-direnv.enable = true;
home.sessionVariables = {
# No more long command warnings
DIRENV_WARN_TIMEOUT = "24h";
# No more usesless logs
DIRENV_LOG_FORMAT = "";
};
}