refactor vlan and firewall config into modules

fix bug with vlans module

fix vlans
This commit is contained in:
Joakim Repomaa
2025-02-03 15:32:09 +02:00
committed by Joakim Repomaa
parent 6026e064fd
commit 2a36964fcc
5 changed files with 255 additions and 112 deletions

7
modules/default.nix Normal file
View File

@@ -0,0 +1,7 @@
{ ... }:
{
imports = [
./vlans.nix
./firewall.nix
];
}