mirror of
https://github.com/oddlama/nix-config.git
synced 2025-10-11 07:10:39 +02:00
chore: allow home assistant access from devices VLAN for voice PE
This commit is contained in:
parent
2406dddd8e
commit
e580cd5885
2 changed files with 23 additions and 0 deletions
|
@ -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;
|
||||
'';
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue