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,19 +1,15 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
programs.ssh = { programs.ssh.extraConfig = "
startAgent = true; IdentityFile /home/wo2w/.ssh/yubikey
enableAskPassword = true; User wo2w
extraConfig = " Port 8743
IdentityFile /home/wo2w/.ssh/yubikey Host gameserver
User wo2w Hostname 192.168.2.112
Port 8743 Host Swordsmachine
Host gameserver Hostname 192.168.2.74
Hostname 192.168.2.112 Host Earthmover
Host Swordsmachine Hostname 192.168.2.175
Hostname 192.168.2.74 ";
Host Earthmover
Hostname 192.168.2.175
";
};
} }