summaryrefslogtreecommitdiff
path: root/modules/common/direnv.nix
blob: 743f3cf29e166cfbf456931a90194f6940f62148 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
  config,
  lib,
  ...
}:
with lib; let
  cfg = config.nixfiles.modules.direnv;
in {
  options.nixfiles.modules.direnv.enable =
    mkEnableOption "direnv";

  config = mkIf cfg.enable {
    hm = {
      home.sessionVariables.DIRENV_LOG_FORMAT = "";

      programs.direnv = {
        enable = true;
        config.global = {
          strict_env = true;
          warn_timeout = "1h";
        };
        nix-direnv.enable = true;
      };
    };
  };
}