From fbeff5e4e94583d05db5eba90725807a7ea661ff Mon Sep 17 00:00:00 2001 From: wo2wz <189177184+wo2wz@users.noreply.github.com> Date: Sun, 26 Oct 2025 19:23:36 -0400 Subject: [PATCH] ssh: remove agent and askpass fuck so this is why gnome-keyring ssh isnt working :sob: --- modules/nixos/programs/ssh.nix | 26 +++++++++++--------------- 1 file changed, 11 insertions(+), 15 deletions(-) diff --git a/modules/nixos/programs/ssh.nix b/modules/nixos/programs/ssh.nix index 8259b58..fb5d5a7 100755 --- a/modules/nixos/programs/ssh.nix +++ b/modules/nixos/programs/ssh.nix @@ -1,19 +1,15 @@ { config, pkgs, ... }: { - programs.ssh = { - startAgent = true; - enableAskPassword = true; - extraConfig = " - IdentityFile /home/wo2w/.ssh/yubikey - User wo2w - Port 8743 - Host gameserver - Hostname 192.168.2.112 - Host Swordsmachine - Hostname 192.168.2.74 - Host Earthmover - Hostname 192.168.2.175 - "; - }; + programs.ssh.extraConfig = " + IdentityFile /home/wo2w/.ssh/yubikey + User wo2w + Port 8743 + Host gameserver + Hostname 192.168.2.112 + Host Swordsmachine + Hostname 192.168.2.74 + Host Earthmover + Hostname 192.168.2.175 + "; } \ No newline at end of file