chore: allow home assistant access from devices VLAN for voice PE

This commit is contained in:
oddlama 2025-02-18 14:33:07 +01:00
parent 2406dddd8e
commit e580cd5885
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
2 changed files with 23 additions and 0 deletions

View file

@ -33,6 +33,11 @@ in
# network = "internet";
# };
services.matter-server = {
enable = true;
logLevel = "debug";
};
topology.self.services.home-assistant.info = "https://${homeassistantDomain}";
services.home-assistant = {
enable = true;
@ -226,6 +231,8 @@ in
extraConfig = ''
allow ${globals.net.home-lan.vlans.home.cidrv4};
allow ${globals.net.home-lan.vlans.home.cidrv6};
allow ${globals.net.home-lan.vlans.devices.cidrv4};
allow ${globals.net.home-lan.vlans.devices.cidrv6};
deny all;
'';
};