From a1e51d602ea1f0a7f2a2e0293761c8bda536ea9e Mon Sep 17 00:00:00 2001 From: Thatoo Date: Tue, 10 Jun 2025 00:24:57 +0200 Subject: [PATCH] ssh-enableAskPassword --- configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 7fed744..c6a053f 100644 --- a/configuration.nix +++ b/configuration.nix @@ -46,7 +46,10 @@ # Enable the OpenSSH daemon. services.openssh.enable = true; - programs.ssh.startAgent = true; + programs.ssh = { + startAgent = true; + enableAskPassword = true; + }; # Set your time zone. time.timeZone = "Europe/Paris";