mirror of
https://github.com/ItsDrike/nixdots
synced 2025-02-24 11:59:02 +00:00
10 lines
185 B
Nix
10 lines
185 B
Nix
{pkgs, ...}: {
|
|
home.sessionVariables = {
|
|
DIRENV_LOG_FORMAT="";
|
|
};
|
|
programs.direnv = {
|
|
enable = true;
|
|
nix-direnv.enable = true;
|
|
enableZshIntegration = true;
|
|
};
|
|
}
|