diff options
| author | Alejandro Soto <alejandro@34project.org> | 2025-05-10 20:09:57 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2025-05-10 20:09:57 -0600 |
| commit | 5c3c9853554a6651019fd45d9d4b4f3d8906cbb1 (patch) | |
| tree | 5405b9c756f84324e5d72eb3b44db2ac51a90dd2 | |
| parent | 4644a1803f30580c677f3c531bbbe96ef5206e81 (diff) | |
home/environ/ssh: set ControlMaster to 'auto' to fix ssh-askpass bug
Diffstat (limited to '')
| -rw-r--r-- | home/environ/ssh.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home/environ/ssh.nix b/home/environ/ssh.nix index 29829be..6426dc8 100644 --- a/home/environ/ssh.nix +++ b/home/environ/ssh.nix @@ -8,7 +8,7 @@ in enable = true; compression = true; - controlMaster = "autoask"; + controlMaster = "auto"; controlPath = "/run/user/%i/ssh/master-%r@%n:%p"; extraOptionOverrides.AddKeysToAgent = "true"; |
