config: Enable authorization through ssh agent #76

Manually merged
tlaternet merged 1 commit from tlater/ssh-auth into master 2022-11-05 18:02:18 +00:00
2 changed files with 10 additions and 3 deletions

View file

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

View file

@ -53,10 +53,8 @@
}; };
sshUser = "tlater"; sshUser = "tlater";
sshOpts = ["-t" "-p" "2222"]; sshOpts = ["-p" "2222" "-o" "ForwardAgent=yes"];
fastConnection = true; fastConnection = true;
# Currently broken, see https://github.com/serokell/deploy-rs/issues/78
magicRollback = false;
}; };
######### #########