From ba27ecb9c2b8703e66e6181c5bb870a787c339df Mon Sep 17 00:00:00 2001 From: "Alexander \"PapaTutuWawa" Date: Thu, 4 Nov 2021 23:51:34 +0100 Subject: [PATCH] lib: Make primaryInterface default to "" --- modules/base.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/base.nix b/modules/base.nix index 38f3bb1..aa504ad 100644 --- a/modules/base.nix +++ b/modules/base.nix @@ -12,6 +12,7 @@ primaryInterface = lib.mkOption { type = lib.types.str; description = "The primary network interface to use"; + default = ""; }; hostName = lib.mkOption { type = lib.types.str;