diff --git a/system/modules/networking/ssh/default.nix b/system/modules/networking/ssh/default.nix index a8bb965..8fb1b4e 100644 --- a/system/modules/networking/ssh/default.nix +++ b/system/modules/networking/ssh/default.nix @@ -27,9 +27,16 @@ in KbdInteractiveAuthentication = mkDefault false; }; }; - programs.ssh = { - knownHosts = { - "192.168.1.36".publicKey = phoneKey; + + programs = { + ssh = { + knownHosts = { + "192.168.1.36".publicKey = phoneKey; + }; + }; + gnupg.agent = { + enable = true; + enableSSHSupport = true; }; }; };