From 8c3c40d7b34dd853a19962ba8e096746bf43d446 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laure=CE=B7t?= Date: Thu, 4 May 2023 20:41:32 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=92=EF=B8=8F=20switch=20from=20ssh-age?= =?UTF-8?q?nt=20to=20gpg-agent?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hosts/neodymium/configuration.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/hosts/neodymium/configuration.nix b/hosts/neodymium/configuration.nix index 7cbc335..aa1d346 100644 --- a/hosts/neodymium/configuration.nix +++ b/hosts/neodymium/configuration.nix @@ -150,8 +150,12 @@ # enable gnome virtual file system services.gvfs.enable = true; - # enable ssh agent - programs.ssh.startAgent = true; + # enable gpg agent + programs.gnupg.agent = { + enable = true; + enableSSHSupport = true; + pinentryFlavor = "gnome3"; + }; # enable polkit security.polkit.enable = true;