This commit is contained in:
2024-08-26 20:57:12 +02:00
parent c12a47cee0
commit 5093e85b0c
4 changed files with 81 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
{ lib, values, ... }: {
system.stateVersion = "22.05";
systemd.network.networks."30-all" = values.defaultNetworkConfig // {
matchConfig.Name = "eth0";
address = with values.hosts.skrott; [ (ipv4 + "/25") (ipv6 + "/64") ];
};
networking.hostName = lib.mkForce "skrot";
}