From 280292b63123eed393410f7e3da02747ff00c74f Mon Sep 17 00:00:00 2001 From: Astro Date: Fri, 28 May 2021 16:49:36 +0200 Subject: [PATCH] nixos-module/container/bird: enable radvd for c3d2-gw* --- nix/nixos-module/container/bird.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/nixos-module/container/bird.nix b/nix/nixos-module/container/bird.nix index 952f31c..0ee9e83 100644 --- a/nix/nixos-module/container/bird.nix +++ b/nix/nixos-module/container/bird.nix @@ -11,7 +11,7 @@ let # Configuring a gateway? If so, this is the associated net. gatewayNet = let - m = builtins.match "(.+)-gw" hostName; + m = builtins.match "(.+)-gw.*" hostName; in if m == [ "cls" ] then "cluster" else if m == null