aboutsummaryrefslogtreecommitdiff
path: root/home/profiles/direnv.nix
blob: bad971d773b5903adaab395831c87aa1d7ee1527 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ ... }:
{
  programs.direnv = {
    enable = true;
    nix-direnv.enable = true;
    config.global = {
      disable_stdin = true;
      strict_env = true;
      hide_env_diff = true;
      warn_timeout = 0;
    };
  };
}