Enable ssh_askpass on workstations

This commit is contained in:
Victor Mignot 2024-12-03 10:56:51 +01:00
parent 4f30e7d875
commit f7927f6510
Signed by: dala
SSH key fingerprint: SHA256:+3O9MhlDc2tJL0n+E+Myr7nL+74DP9AXdIXHmIqZTkY
2 changed files with 10 additions and 0 deletions

View file

@ -13,6 +13,7 @@
./desktop.nix
./bluetooth.nix
./wireshark.nix
./ssh.nix
];
config =

View file

@ -0,0 +1,9 @@
{ ... }:
{
programs.ssh = {
startAgent = true;
enableAskPassword = true;
};
environment.variables.SSH_ASKPASS_REQUIRE = "never";
}