71 lines
1.7 KiB
Nix
71 lines
1.7 KiB
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
options.chvp.base.network.ovh = {
|
|
enable = lib.mkOption {
|
|
default = false;
|
|
example = true;
|
|
};
|
|
publicInterface = lib.mkOption {
|
|
default = "eno3";
|
|
example = "eno1";
|
|
};
|
|
publicIPV4 = lib.mkOption {
|
|
example = {
|
|
ip = "1.2.3.4";
|
|
gateway = "1.2.3.254";
|
|
};
|
|
};
|
|
publicIPV6 = lib.mkOption {
|
|
example = {
|
|
ip = "1:2:3:4::";
|
|
gateway = "1:2:3:ff:ff:ff:ff:ff";
|
|
};
|
|
};
|
|
internalInterface = lib.mkOption {
|
|
default = "eno4";
|
|
example = "eno2";
|
|
};
|
|
internalIPV4 = lib.mkOption {
|
|
example = "192.168.0.1";
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf config.chvp.base.network.ovh.enable {
|
|
networking.useDHCP = false;
|
|
systemd.network = {
|
|
enable = true;
|
|
networks = with config.chvp.base.network.ovh; {
|
|
"${publicInterface}" = {
|
|
enable = true;
|
|
matchConfig = { Name = "${publicInterface}"; };
|
|
address = [
|
|
"${publicIPV4.ip}/24"
|
|
"${publicIPV6.ip}/64"
|
|
];
|
|
gateway = [ publicIPV4.gateway ];
|
|
routes = [
|
|
{
|
|
Gateway = publicIPV6.gateway;
|
|
GatewayOnLink = true;
|
|
}
|
|
];
|
|
dns = [
|
|
"1.1.1.1"
|
|
"1.0.0.1"
|
|
"2606:4700:4700::1111"
|
|
"2606:4700:4700::1001"
|
|
];
|
|
};
|
|
"${internalInterface}" = {
|
|
enable = true;
|
|
matchConfig = { Name = "${internalInterface}"; };
|
|
address = [ "${internalIPV4}/16" ];
|
|
routes = [
|
|
{ Destination = "${internalIPV4}/16"; }
|
|
];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|