summaryrefslogtreecommitdiff
path: root/modules/direnv.nix
blob: ececad886ceb198abe6d4bd9926d09c030a4af5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ 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;
      };
    };
  };
}