From 73ddca82a8fa0afa4eafe17780c41d48dae92d19 Mon Sep 17 00:00:00 2001 From: Tom Hubrecht Date: Sat, 24 Feb 2024 14:53:05 +0100 Subject: [PATCH] feat(meta): Makes it mandatory to declare gateways for an interface The list might still be empty when using DHCP --- meta/options.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/meta/options.nix b/meta/options.nix index 6d36cb1..6e03b9b 100644 --- a/meta/options.nix +++ b/meta/options.nix @@ -169,7 +169,6 @@ in gateways = mkOption { type = listOf str; - default = [ ]; description = '' List of gateways used by the interface. ''; @@ -251,6 +250,4 @@ in ''; }; }; - - config = { }; }