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