Files
dotfiles/lib/network.nix
Amneesh Singh 950cf357d1 lib/network: init
Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2023-01-23 21:39:56 +05:30

18 lines
330 B
Nix

{
addresses = {
wireguard = rec {
ipPrefix = "10.55.0";
prefixLength = 24;
ipsWithPrefixLength = "10.55.0.0/24";
ips = {
remilia = "${ipPrefix}.1";
marisa = "${ipPrefix}.2";
satori = "${ipPrefix}.3";
};
};
domain = {
natto = "weirdnatto.in";
};
};
}