nixfiles/config/profiles/kartoffel.nix

21 lines
346 B
Nix
Raw Permalink Normal View History

2024-06-12 15:00:55 +02:00
{ ... }: {
2024-01-18 16:03:31 +01:00
services.resolved = {
extraConfig = ''
DNS = [2a0f:be01::1]
'';
};
systemd.network.networks."98-eth-default" = {
matchConfig.Type = "ether";
matchConfig.Name = "e*";
networkConfig = {
DHCP = "ipv4";
IPv6AcceptRA = false;
};
routes = [
{ Gateway = "fe80::1"; }
2024-01-18 16:03:31 +01:00
];
};
}