nixos/bird-lg: Update option description to indicate new features

In release v1.3.3[0] support for CIDRs was added, thus updated the
option description to indicate the new support for that.

[0]: https://github.com/xddxdd/bird-lg-go/releases/tag/v1.3.3
This commit is contained in:
e1mo 2024-02-27 23:46:24 +01:00
parent 14323d2766
commit 43fee5401d
No known key found for this signature in database
GPG key ID: 1D5D79A439E787F1

View file

@ -194,8 +194,8 @@ in
allowedIPs = mkOption {
type = types.listOf types.str;
default = [ ];
example = [ "192.168.25.52" "192.168.25.53" ];
description = lib.mdDoc "List of IPs to allow (default all allowed).";
example = [ "192.168.25.52" "192.168.25.53" "192.168.0.0/24" ];
description = lib.mdDoc "List of IPs or networks to allow (default all allowed).";
};
birdSocket = mkOption {