nixos-config/nix/topology/networks.nix
Ingolf Wagner 1564bd8d72
All checks were successful
Build all NixOS Configurations / nix build (push) Successful in 12m0s
🔧 add some topology information
2024-08-30 17:34:57 +07:00

21 lines
311 B
Nix

{ config, ... }:
with config.lib.topology;
{
networks.wg0 = {
name = "wg0";
cidrv4 = "10.100.0.0/24";
};
networks."tinc.private" = {
name = "tinc private";
cidrv4 = "10.23.42.0/24";
};
networks."tinc.retiolum" = {
name = "tinc retiolum";
#cidrv4 = "192.168.0.0/24";
};
}