summaryrefslogtreecommitdiff
path: root/modules/common/direnv.nix
blob: 34292189c0c19a369fb66e0283249f154b83a27b (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
{
  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;
      };
    };
  };
}