From 04de05ce751532e6f671be2b36988e54cbed25e4 Mon Sep 17 00:00:00 2001 From: Astro Date: Tue, 7 Sep 2021 00:11:28 +0200 Subject: [PATCH] lib/config/options: add missing staticIpv4Address default --- nix/lib/config/options.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nix/lib/config/options.nix b/nix/lib/config/options.nix index 8332cdc..4376b7b 100644 --- a/nix/lib/config/options.nix +++ b/nix/lib/config/options.nix @@ -113,6 +113,7 @@ let }; staticIpv4Address = mkOption { type = with types; nullOr str; + default = null; }; upBandwidth = mkOption { type = with types; nullOr int;