chore: reformat

This commit is contained in:
Tim Schubert 2025-06-03 20:04:44 +02:00
parent b638c4125b
commit 1402ee13cc
No known key found for this signature in database
57 changed files with 845 additions and 466 deletions

View file

@ -1,6 +1,7 @@
{ config
, pkgs
, ...
{
config,
pkgs,
...
}:
let
hostName = "surgat";
@ -85,14 +86,29 @@ in
};
"10-ninurta" = {
matchConfig.Name = "ninurta";
address = [ "10.3.3.1/32" "fd42:9c3b:f96d:121::1/128" ];
address = [
"10.3.3.1/32"
"fd42:9c3b:f96d:121::1/128"
];
DHCP = "no";
networkConfig.IPv6AcceptRA = false;
linkConfig.RequiredForOnline = "no";
routes = [
{ routeConfig = { Destination = "10.3.3.3/24"; }; }
{ routeConfig = { Destination = "fd42:9c3b:f96d:121::/64"; }; }
{ routeConfig = { Destination = "fd42:9c3b:f96d:101::/64"; }; }
{
routeConfig = {
Destination = "10.3.3.3/24";
};
}
{
routeConfig = {
Destination = "fd42:9c3b:f96d:121::/64";
};
}
{
routeConfig = {
Destination = "fd42:9c3b:f96d:101::/64";
};
}
];
};
};
@ -106,12 +122,18 @@ in
PrivateKeyFile = "/var/lib/wireguard/hydra";
ListenPort = 51235;
};
wireguardPeers = [{
wireguardPeerConfig = {
PublicKey = "Kw2HVRb1zeA7NAzBvI3UzmOj45VqM358EBuZWdlAUDE=";
AllowedIPs = [ "10.3.3.3/32" "fd42:9c3b:f96d:121::3/128" "fd42:9c3b:f96d:101:4a21:bff:fe3e:9cfe/128" ];
};
}];
wireguardPeers = [
{
wireguardPeerConfig = {
PublicKey = "Kw2HVRb1zeA7NAzBvI3UzmOj45VqM358EBuZWdlAUDE=";
AllowedIPs = [
"10.3.3.3/32"
"fd42:9c3b:f96d:121::3/128"
"fd42:9c3b:f96d:101:4a21:bff:fe3e:9cfe/128"
];
};
}
];
};
};
};
@ -143,7 +165,10 @@ in
services.resolved = {
enable = true;
fallbackDns = [ "9.9.9.9" "2620:fe::fe" ];
fallbackDns = [
"9.9.9.9"
"2620:fe::fe"
];
};
system.autoUpgrade.allowReboot = false;