From 14020f2cfa29bc4c999c5135ac18d4a65d341366 Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Thu, 11 Jul 2024 05:18:10 -0700 Subject: [PATCH] ssh: include config.d this is to allow non-leaked hosts in my ssh config --- home/modules/ssh.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home/modules/ssh.nix b/home/modules/ssh.nix index c3c1e8c..e716f51 100644 --- a/home/modules/ssh.nix +++ b/home/modules/ssh.nix @@ -13,6 +13,9 @@ in config = lib.mkIf cfg.enable { programs.ssh = { enable = true; + includes = [ + "conf.d/*" + ]; matchBlocks = { "git.zynh.me" = { hostname = "git.zynh.me";