From 340e0fcb1513d7e3c3ce9f28c7ed06bd2c652476 Mon Sep 17 00:00:00 2001 From: niten Date: Mon, 29 Jul 2024 22:32:24 -0700 Subject: [PATCH] Set a default null for local-gateway --- lib/fudo/sites.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/fudo/sites.nix b/lib/fudo/sites.nix index 618f9b2..6d409d6 100644 --- a/lib/fudo/sites.nix +++ b/lib/fudo/sites.nix @@ -84,6 +84,12 @@ let default = null; }; + local-gateway = mkOption { + type = nullOr str; + description = "Hostname of the local gateway, if any."; + default = null; + }; + enable-ssh-backdoor = mkOption { type = bool; description =