From 86394b692c526199190fd6e0fc6ab36e0debf2f0 Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Thu, 11 May 2023 11:27:05 -0400 Subject: [PATCH] Use sshSign module on extremophile --- machines/extremophile/home.nix | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/machines/extremophile/home.nix b/machines/extremophile/home.nix index 94badbe..24f2e7a 100644 --- a/machines/extremophile/home.nix +++ b/machines/extremophile/home.nix @@ -3,7 +3,12 @@ { nathan = { programs = { - util = { git = { gpgSign = false; }; }; + util = { + git = { + gpgSign = false; + sshSign = true; + }; + }; devel = { idris2 = true; haskell = false; @@ -14,12 +19,4 @@ }; config = { isDesktop = true; }; }; - # Setup git commit signing with ssh key - programs.git = { - extraConfig = { - commit.gpgsign = true; - gpg.format = "ssh"; - user.signingkey = "~/.ssh/id_ed25519.pub"; - }; - }; }