aboutsummaryrefslogtreecommitdiff
path: root/snowfall/modules/home/tools/git/default.nix
blob: 1780d80f1e71c79d85c7bfb303d192a12e157e0c (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ options, config, lib, namespace, ... }:

with lib; with lib.${namespace}; let
  cfg = config.${namespace}.tools.git;
in {
  options.${namespace}.tools.git = with types; {
    enable = mkEnableOption "git";

    name = mkOption {
      type = str;
    };

    email = mkOption {
      type = str;
    };

    key = mkOption {
      type = nullOr str;
    };

    sign = mkOption {
      type = bool;
      default = true;
    };
  };

  config = mkIf cfg.enable {
    programs.git = {
      enable = true;

      userName = cfg.name;
      userEmail = cfg.email;

      signing = {
        key = cfg.key;
        signByDefault = cfg.sign;
      };

      ignores = [
        "*~"
        "*.swp"
      ];  
    };
  };
}