From ea2ee0df31caac29cee8ce0132aec4d37fd31319 Mon Sep 17 00:00:00 2001 From: Nate Graham Date: Wed, 29 Apr 2026 12:42:01 -0600 Subject: [PATCH] Also set SSH_ASKPASS_REQUIRE=prefer Without this, `ssh-add` will continue to ask in a terminal window rather than going through ksshaskpass, which we pre-install. Related to #555 --- mkosi.extra/usr/lib/environment.d/60-ssh-askpass.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mkosi.extra/usr/lib/environment.d/60-ssh-askpass.conf b/mkosi.extra/usr/lib/environment.d/60-ssh-askpass.conf index 6f9a88e..bab8b44 100644 --- a/mkosi.extra/usr/lib/environment.d/60-ssh-askpass.conf +++ b/mkosi.extra/usr/lib/environment.d/60-ssh-askpass.conf @@ -3,6 +3,6 @@ # Some GUI applications, such as Dolphin Git integration, ask for # SSH password during use. This lets those applications to know what -# our GUI tool for it is. +# our GUI tool for it is, and asks them to use it. SSH_ASKPASS=/usr/bin/ksshaskpass - +SSH_ASKPASS_REQUIRE=prefer