From a61a602bd2e3fb19ee53779019e9279495acb112 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Wed, 15 Feb 2023 15:02:15 +0000 Subject: [PATCH] home: ssh: include local-only config file Useful for configuration options that should remain secret. --- home/ssh/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/home/ssh/default.nix b/home/ssh/default.nix index cbfd30c..bbf1bfc 100644 --- a/home/ssh/default.nix +++ b/home/ssh/default.nix @@ -10,6 +10,11 @@ in config.programs.ssh = lib.mkIf cfg.enable { enable = true; + includes = [ + # Local configuration, not-versioned + "config.local" + ]; + matchBlocks = { "github.com" = { hostname = "github.com";