nixos-config/modules/workstation/ssh.nix

9 lines
146 B
Nix

{ ... }:
{
programs.ssh = {
startAgent = true;
enableAskPassword = true;
};
environment.variables.SSH_ASKPASS_REQUIRE = "never";
}