direnv bug workaround

This commit is contained in:
Bryan Ramos 2025-07-06 10:33:52 -04:00
parent 37a1a771aa
commit d3baf7c8e2
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8

View file

@ -31,8 +31,18 @@ in
};
};
home.sessionVariables = {
DIRENV_LOG_FORMAT = "";
home = {
sessionVariables = {
DIRENV_LOG_FORMAT = "";
};
# Workaround for direnv_log bug
# https://github.com/direnv/direnv/issues/1418#issuecomment-2820125413
file.".config/direnv/direnv.toml" = {
enable = true;
force = true;
text = "";
};
};
};
}