2024-06-12 15:00:55 +02:00
|
|
|
{ ... }: {
|
2024-01-18 16:03:31 +01:00
|
|
|
imports = [
|
|
|
|
../../common
|
2024-02-05 22:22:40 +01:00
|
|
|
../../profiles/headless.nix
|
2024-05-06 20:42:50 +02:00
|
|
|
../../profiles/lxc.nix
|
2024-01-18 16:03:31 +01:00
|
|
|
];
|
2024-05-06 20:42:50 +02:00
|
|
|
kyouma.machine-type.physical = false;
|
2024-01-18 16:03:31 +01:00
|
|
|
|
2024-06-12 17:06:23 +02:00
|
|
|
systemd.network.networks."98-eth-default" = {
|
2024-01-18 16:03:31 +01:00
|
|
|
matchConfig.Type = "ether";
|
|
|
|
matchConfig.Name = "e*";
|
|
|
|
linkConfig.RequiredForOnline = "routable";
|
|
|
|
|
|
|
|
networkConfig = {
|
|
|
|
DHCP = "no";
|
|
|
|
IPv6AcceptRA = false;
|
|
|
|
};
|
|
|
|
address = [
|
|
|
|
"2a03:4000:27:74::b00b/64"
|
|
|
|
"185.244.193.190/22"
|
|
|
|
];
|
|
|
|
routes = [
|
2024-06-12 17:06:23 +02:00
|
|
|
{ Gateway = "fe80::1"; }
|
|
|
|
{ Gateway = "185.244.192.1"; }
|
2024-01-18 16:03:31 +01:00
|
|
|
];
|
|
|
|
};
|
|
|
|
services.powerdns = {
|
|
|
|
enable = true;
|
|
|
|
secretFile = "/run/keys/powerdns.env";
|
|
|
|
extraConfig = ''
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|