15 lines
234 B
Nix
15 lines
234 B
Nix
|
{ ... }: {
|
||
|
programs.direnv = {
|
||
|
enable = true;
|
||
|
enableZshIntegration = true;
|
||
|
nix-direnv = {
|
||
|
enable = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
xdg.configFile."direnv/config.toml".text = ''
|
||
|
[global]
|
||
|
warn_timeout = "1000s"
|
||
|
'';
|
||
|
}
|