mirror of
https://github.com/RGBCube/ncc
synced 2025-07-27 10:07:44 +00:00
11 lines
229 B
Nix
11 lines
229 B
Nix
{ lib, ... }: let
|
|
inherit (lib) mkValue;
|
|
in {
|
|
options.networking = {
|
|
ipv4.address = mkValue null;
|
|
ipv4.prefixLength = mkValue 22;
|
|
|
|
ipv6.address = mkValue null;
|
|
ipv6.prefixLength = mkValue 64;
|
|
};
|
|
}
|