Set a default null for local-gateway

This commit is contained in:
niten 2024-07-29 22:32:24 -07:00
parent 46e5d85c30
commit 340e0fcb15

View File

@ -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 =