From f7876206de582dda062c69a216a5c32a25de7260 Mon Sep 17 00:00:00 2001 From: niten Date: Thu, 6 Jan 2022 08:37:39 -0800 Subject: [PATCH] Try removing function arguments --- lib/types/zone-definition.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/types/zone-definition.nix b/lib/types/zone-definition.nix index 949fbf0..ff8d9af 100644 --- a/lib/types/zone-definition.nix +++ b/lib/types/zone-definition.nix @@ -33,8 +33,8 @@ let networkHostOpts = import ./network-host.nix { inherit lib; }; - zoneOpts = { ... }: with types; { - options = { + zoneOpts = { + options = with types; { hosts = mkOption { type = attrsOf (submodule networkHostOpts); description = "Hosts on the local network, with relevant settings.";