Enforce signing of git commits if GNUPG is installed

This commit is contained in:
Tim Schubert 2020-02-28 17:20:21 +01:00
parent c1ab1afd4e
commit 33b15f94ce
Signed by: dadada
GPG key ID: EEB8D1CE62C4DFEA

View file

@ -18,4 +18,8 @@
defaultCacheTtl = 1800; defaultCacheTtl = 1800;
enableSshSupport = false; enableSshSupport = false;
}; };
programs.git.extraConfig = {
commit = { gpgSign = true; };
};
} }