From 7d15904e7c2a5274287ce480c8ffefa0e6fdea94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Sat, 15 Mar 2025 01:03:19 -0300 Subject: [PATCH] git: sign commits --- user/git.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/user/git.nix b/user/git.nix index 9e76e01..d411d35 100644 --- a/user/git.nix +++ b/user/git.nix @@ -16,13 +16,17 @@ in user = { name = username; email = mail.personal.user; + signingkey = "2F8F21CE8721456B"; }; init.defaultBranch = "main"; core = { fsmonitor = true; untrackedCache = true; }; - commit.verbose = true; + commit = { + verbose = true; + gpgsign = true; + }; fetch = { prune = true; pruneTags = true;