network/config/default.nix
2021-11-15 21:24:44 +01:00

16 lines
208 B
Nix

{ lib, ... }:
{
imports = [
# Secrets
./secrets.nix
# Hardware
./vlan.nix
./switch.nix
./ap.nix
./server.nix
] ++
# IP networks
lib.filesystem.listFilesRecursive ./net;
}