blob: 06ce017ec946b11986aec014a41ad83e1f8c1185 (
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
|
{ 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"
];
extraConfig = {
init.defaultBranch = "main";
};
};
};
}
|