network/config/default.nix

16 lines
208 B
Nix
Raw Permalink Normal View History

2021-11-15 21:24:44 +01:00
{ lib, ... }:
2021-11-13 01:23:23 +01:00
{
imports = [
2021-11-13 01:44:14 +01:00
# Secrets
2021-11-13 01:23:23 +01:00
./secrets.nix
2021-11-13 01:44:14 +01:00
# Hardware
2021-11-13 01:23:23 +01:00
./vlan.nix
2021-11-13 01:44:14 +01:00
./switch.nix
./ap.nix
./server.nix
2021-11-15 21:24:44 +01:00
] ++
# IP networks
lib.filesystem.listFilesRecursive ./net;
2021-11-13 01:23:23 +01:00
}