diff --git a/modules/workstation/default.nix b/modules/workstation/default.nix index 971b1c8..02bae8b 100644 --- a/modules/workstation/default.nix +++ b/modules/workstation/default.nix @@ -13,6 +13,7 @@ ./desktop.nix ./bluetooth.nix ./wireshark.nix + ./ssh.nix ]; config = diff --git a/modules/workstation/ssh.nix b/modules/workstation/ssh.nix new file mode 100644 index 0000000..873261b --- /dev/null +++ b/modules/workstation/ssh.nix @@ -0,0 +1,9 @@ +{ ... }: +{ + programs.ssh = { + startAgent = true; + enableAskPassword = true; + }; + + environment.variables.SSH_ASKPASS_REQUIRE = "never"; +}