about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authore1mo <git@e1mo.de>2024-02-27 23:46:24 +0100
committere1mo <git@e1mo.de>2024-02-27 23:54:21 +0100
commit43fee5401d9343608d564b13a896baa382154031 (patch)
tree4b7395d380828686ade88ade84c2f71a39df0a92 /nixos
parent14323d27665a49d083c7787b1f9e2e7ca8f87bd2 (diff)
downloadnixlib-43fee5401d9343608d564b13a896baa382154031.tar
nixlib-43fee5401d9343608d564b13a896baa382154031.tar.gz
nixlib-43fee5401d9343608d564b13a896baa382154031.tar.bz2
nixlib-43fee5401d9343608d564b13a896baa382154031.tar.lz
nixlib-43fee5401d9343608d564b13a896baa382154031.tar.xz
nixlib-43fee5401d9343608d564b13a896baa382154031.tar.zst
nixlib-43fee5401d9343608d564b13a896baa382154031.zip
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
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/networking/bird-lg.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/networking/bird-lg.nix b/nixos/modules/services/networking/bird-lg.nix
index be9f4101e6ab..1c59f7a6ae7c 100644
--- a/nixos/modules/services/networking/bird-lg.nix
+++ b/nixos/modules/services/networking/bird-lg.nix
@@ -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 {