mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-23 16:29:42 -04:00
direnv bug workaround
This commit is contained in:
parent
37a1a771aa
commit
d3baf7c8e2
1 changed files with 12 additions and 2 deletions
|
|
@ -31,8 +31,18 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
home.sessionVariables = {
|
home = {
|
||||||
|
sessionVariables = {
|
||||||
DIRENV_LOG_FORMAT = "";
|
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 = "";
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue