config: Enable authorization through ssh agent

This enables sudo-via-yubikey and therefore makes `-t` obsolete, in
turn fixing a whole sleuth of issues with deploy-rs.

*And* seems more secure and convenient at the same time.
This commit is contained in:
Tristan Daniël Maat 2022-11-05 17:59:27 +00:00
parent 0528f73187
commit 997707021b
Signed by: tlater
GPG key ID: 49670FD774E43268
2 changed files with 10 additions and 3 deletions
configuration

View file

@ -100,6 +100,15 @@
gatewayPorts = "yes";
};
security = {
sudo.execWheelOnly = true;
pam = {
enableSSHAgentAuth = true;
services.sudo.sshAgentAuth = true;
};
};
services.nginx = {
enable = true;
recommendedTlsSettings = true;