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,10 +27,17 @@ in
KbdInteractiveAuthentication = mkDefault false; KbdInteractiveAuthentication = mkDefault false;
}; };
}; };
programs.ssh = {
programs = {
ssh = {
knownHosts = { knownHosts = {
"192.168.1.36".publicKey = phoneKey; "192.168.1.36".publicKey = phoneKey;
}; };
}; };
gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
};
}; };
} }