blob: bd7da60491200d43333a756ea63fce2fe17631fe (
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
46
47
48
49
50
51
|
{ 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;
settings = {
user = {
name = cfg.name;
email = cfg.email;
};
init.defaultBranch = "main";
};
signing = {
key = cfg.key;
signByDefault = cfg.sign;
};
ignores = [
"*~"
"*.swp"
];
};
};
}
|