feat: netcat and git automatic gpg signing
This commit is contained in:
parent
42fcb8b08b
commit
f6d588f4e0
10
common.nix
10
common.nix
@ -476,6 +476,7 @@ in
|
|||||||
jdk # Java development kit
|
jdk # Java development kit
|
||||||
nixfmt-rfc-style # official nix formatter
|
nixfmt-rfc-style # official nix formatter
|
||||||
ripgrep # some nice grep alternative
|
ripgrep # some nice grep alternative
|
||||||
|
netcat-gnu # networking connection debugging
|
||||||
];
|
];
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
@ -516,10 +517,19 @@ in
|
|||||||
p = "push";
|
p = "push";
|
||||||
cl = "clone";
|
cl = "clone";
|
||||||
};
|
};
|
||||||
|
delta = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
extraConfig = {
|
extraConfig = {
|
||||||
push = {
|
push = {
|
||||||
autoSetupRemote = true;
|
autoSetupRemote = true;
|
||||||
};
|
};
|
||||||
|
commit = {
|
||||||
|
gpgsign = true;
|
||||||
|
};
|
||||||
|
tag = {
|
||||||
|
gpgSign = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user