From 258abf53968b92cb5b61be2bcb385873cd9d4d9d Mon Sep 17 00:00:00 2001
From: lassulus <lassulus@lassul.us>
Date: Sun, 14 Nov 2021 09:36:27 +0100
Subject: [PATCH] types net: add defaults for wiregrill

---
 lib/types.nix | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/lib/types.nix b/lib/types.nix
index a5fcd4e6a..d6d524377 100644
--- a/lib/types.nix
+++ b/lib/types.nix
@@ -137,6 +137,8 @@ rec {
               type = cidr4;
             } // optionalAttrs (config._module.args.name == "retiolum") {
               default = "10.243.0.0/16";
+            } // optionalAttrs (config._module.args.name == "wiregrill") {
+              default = "10.244.0.0/16";
             });
           };
         });
@@ -153,6 +155,8 @@ rec {
               type = cidr6;
             } // optionalAttrs (config._module.args.name == "retiolum") {
               default = "42::/16";
+            } // optionalAttrs (config._module.args.name == "wiregrill") {
+              default = "42:1::/32";
             });
           };
         });
@@ -240,6 +244,7 @@ rec {
             };
           };
         }));
+        default = null;
       };
     };
   });