1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +00:00

Bettee grouping of options

This commit is contained in:
RGBCube 2024-04-30 12:56:08 +03:00
parent e0f6493d7f
commit 91ee04c46f
No known key found for this signature in database

View file

@ -1,4 +1,6 @@
{ lib, ... }: {
options.networking.ipv4 = lib.mkValue null;
options.networking.ipv6 = lib.mkValue null;
options.networking = {
ipv4 = lib.mkValue null;
ipv6 = lib.mkValue null;
};
}