From 6a95baea5b70b118a50ddf8c903d63dad348a886 Mon Sep 17 00:00:00 2001 From: Tine Date: Thu, 20 Feb 2025 20:00:17 +0100 Subject: [PATCH] feat: ssh changes --- nix/core.nix | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/nix/core.nix b/nix/core.nix index b8b0169..91f32f7 100644 --- a/nix/core.nix +++ b/nix/core.nix @@ -162,23 +162,17 @@ includes = [ { path = "~/.gitconfig.local"; } ]; - extraConfig = { - user = { - signingkey = "~/.ssh/id_ed25519"; - }; + signing = { + format = "ssh"; + key = "~/.ssh/id_ed25519"; + signByDefault = true; + }; + extraConfig = { rerere = { enabled = true; }; - commit = { - gpgsign = true; - }; - - gpg = { - format = "ssh"; - }; - credential = { helper = "secretservice"; };