ssh: remove agent and askpass

fuck so this is why gnome-keyring ssh isnt working 😭
This commit is contained in:
wo2wz 2025-10-26 19:23:36 -04:00
parent 0d2138970e
commit fbeff5e4e9

View file

@ -1,10 +1,7 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
programs.ssh = { programs.ssh.extraConfig = "
startAgent = true;
enableAskPassword = true;
extraConfig = "
IdentityFile /home/wo2w/.ssh/yubikey IdentityFile /home/wo2w/.ssh/yubikey
User wo2w User wo2w
Port 8743 Port 8743
@ -15,5 +12,4 @@
Host Earthmover Host Earthmover
Hostname 192.168.2.175 Hostname 192.168.2.175
"; ";
};
} }