From 4b712b6b671a0314822f20500cd247e4b4acaeb9 Mon Sep 17 00:00:00 2001 From: Trolli Schmittlauch Date: Sat, 4 Apr 2026 23:40:48 +0200 Subject: [PATCH] fixup! home/ssh: use %C for control socket paths --- home/modules/ssh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/modules/ssh.nix b/home/modules/ssh.nix index 36c44b0..bdefa24 100644 --- a/home/modules/ssh.nix +++ b/home/modules/ssh.nix @@ -93,7 +93,7 @@ in tag: tagDef: let dependency = if tagDef.after != null then lib.hm.dag.entryAfter tagDef.after else lib.id; - escapeOpensshConfig = builtins.replaceStrings ["%"] ["%%"]; + escapeOpensshConfig = builtins.replaceStrings [ "%" ] [ "%%" ]; in lib.nameValuePair "tagged-${tag}" { match = ''tagged="${tag}"'';