From 967610faec193c563f17ff7f10378224a45a5d93 Mon Sep 17 00:00:00 2001 From: "RingOfStorms (Joshua Bell)" Date: Wed, 13 Aug 2025 09:01:30 -0500 Subject: [PATCH] fix ssh config --- common/_home_manager/mods/ssh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/_home_manager/mods/ssh.nix b/common/_home_manager/mods/ssh.nix index 8061cdc..4b63100 100644 --- a/common/_home_manager/mods/ssh.nix +++ b/common/_home_manager/mods/ssh.nix @@ -10,7 +10,7 @@ let let secrets = age.secrets or { }; in - secrets ? secret && secrets.${secret} != null; + secrets ? ${secret} && secrets.${secret} != null; in { # TODO can I put all IP's in the flake.nix top level settings and pull them in here instead?