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

  config = mkIf cfg.enable {
    hm = {
      programs.direnv = {
        enable = true;
        nix-direnv.enable = true;
      };

      home.sessionVariables.DIRENV_LOG_FORMAT = "";
    };
  };
}