From 1e81cd287ca213c8f35f0785c3735572c3120045 Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Fri, 12 May 2023 20:27:03 +0200 Subject: [PATCH] dregil: Enable gpg-agent with ssh via home-manager --- outputs/homeConfigurations/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/outputs/homeConfigurations/default.nix b/outputs/homeConfigurations/default.nix index ea49a02..d9f5027 100644 --- a/outputs/homeConfigurations/default.nix +++ b/outputs/homeConfigurations/default.nix @@ -63,6 +63,12 @@ in # do not show home-manager notifications news.display = "silent"; + + services.gpg-agent = { + enable = true; + enableSshSupport = true; + sshKeys = [ "9027AB16B9A7C20BD29F30F55CBA054430BF014C" ]; + }; } ]; };