Files
nix/hosts/common/configs/system/networking/options.nix
2025-09-22 10:25:31 +01:00

18 lines
353 B
Nix

{ lib, ... }:
{
options.networking =
with lib;
with types;
{
publicIPv4 = mkOption {
type = nullOr string;
description = "The public IPv4 address of this device.";
};
publicIPv6 = mkOption {
type = nullOr string;
description = "The public IPv6 address of this device.";
};
};
}