From c084569fb1ffc4551bee9bf5e00bd85d66431477 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laure=CE=B7t?= Date: Sun, 31 Mar 2024 16:12:36 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20(home)=20add=20aurum=20ssh=20sig?= =?UTF-8?q?ning=20key=20+=20set=20gpg=20format=20to=20ssh?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- home/shell/git.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/home/shell/git.nix b/home/shell/git.nix index 8813a48..ae0fae8 100644 --- a/home/shell/git.nix +++ b/home/shell/git.nix @@ -1,6 +1,7 @@ {osConfig, ...}: let sign_key = { + "aurum" = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIItSJTtS7tO0Wz/WgHAFb3xuNFZpm8SOvr/o8uR83zzy laurent@aurum"; "silicium" = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINTvwXCT99s1EwOCeGQ28jyCAH/RBoLZza9k5I7wWdEu laurent@silicium"; } ."${osConfig.networking.hostName}"; @@ -29,6 +30,7 @@ in { extraConfig = { merge.conflictstyle = "diff3"; + gpg.format = "ssh"; }; }; }