nixos-config/modules/workstation/ssh.nix

10 lines
146 B
Nix
Raw Permalink Normal View History

2024-12-03 10:56:51 +01:00
{ ... }:
{
programs.ssh = {
startAgent = true;
enableAskPassword = true;
};
environment.variables.SSH_ASKPASS_REQUIRE = "never";
}