blob: 1839f25890444f3551dff7716d28b823a5f6d1cd (
plain) (
blame)
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
|
{...}: {
programs.git = {
enable = true;
userEmail = "sils@sils.li";
userName = "sils";
delta = {
enable = true;
options = {
decorations = {
commit-decoration-style = "bold purple box ul";
file-decoration-style = "none";
file-style = "bold red ul";
};
features = "decorations";
whitespace-error-style = "22 reverse";
};
};
signing = {
key = "DF1878E6D9C3B27F";
signByDefault = true;
};
extraConfig = {
core = {
autocrlf = "input";
};
safe = {
directory = "/etc/nixos";
};
push = {
autoSetupRemote = true;
};
init = {
defaultBranch = "main";
};
};
};
}
|