feat(meta): Makes it mandatory to declare gateways for an interface
All checks were successful
build configuration / build_rescue01 (push) Successful in 1m2s
build configuration / build_vault01 (push) Successful in 1m4s
build configuration / build_web02 (push) Successful in 1m4s
build configuration / build_storage01 (push) Successful in 1m8s
build configuration / build_compute01 (push) Successful in 1m11s
lint / check (push) Successful in 23s
build configuration / build_web01 (push) Successful in 1m35s

The list might still be empty when using DHCP
This commit is contained in:
Tom Hubrecht 2024-02-24 14:53:05 +01:00
parent 02c573c526
commit 73ddca82a8

View file

@ -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 = { };
}