nix/host/x86_64-linux/desktop/Network.nix

22 lines
352 B
Nix
Raw Normal View History

2024-11-28 22:06:48 +03:00
{ ... }: {
systemd.network = {
networks = {
"10-lan" = {
matchConfig.Name = "enp4s0";
linkConfig.RequiredForOnline = "routable";
networkConfig = {
2024-11-29 00:44:11 +03:00
DHCP = "yes";
2024-11-29 01:08:42 +03:00
DNS = "10.0.0.1";
2024-11-28 22:06:48 +03:00
IPv6AcceptRA = true;
};
address = [
"10.0.0.3/24"
];
routes = [
2024-11-29 02:11:11 +03:00
{ Gateway = "10.0.0.1"; }
2024-11-28 22:06:48 +03:00
];
};
};
};
}