mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 06:29:41 +00:00
11 lines
187 B
Nix
11 lines
187 B
Nix
{pkgs, ...}: {
|
|
home.sessionVariables = {
|
|
DIRENV_LOG_FORMAT = "";
|
|
};
|
|
programs.direnv = {
|
|
enable = true;
|
|
nix-direnv.enable = true;
|
|
enableZshIntegration = true;
|
|
};
|
|
}
|