refactor(systemModules:ssh): move gnupg.agent to ssh module

This commit is contained in:
ooks-io 2024-04-29 18:46:20 +12:00
parent 3a91848085
commit 6db577fbf5

View file

@ -27,9 +27,16 @@ in
KbdInteractiveAuthentication = mkDefault false; KbdInteractiveAuthentication = mkDefault false;
}; };
}; };
programs.ssh = {
knownHosts = { programs = {
"192.168.1.36".publicKey = phoneKey; ssh = {
knownHosts = {
"192.168.1.36".publicKey = phoneKey;
};
};
gnupg.agent = {
enable = true;
enableSSHSupport = true;
}; };
}; };
}; };