nixos-servers/modules/networking/default.nix
2024-10-28 14:12:06 +01:00

40 lines
790 B
Nix

{
lib,
machine,
...
}: {
config = {
networking = {
domain = "dmz";
nftables.enable = lib.mkDefault true;
useDHCP = false;
firewall.enable = lib.mkDefault true;
};
systemd.network = {
enable = true;
networks = lib.attrsets.mergeAttrsList [
(lib.optionalAttrs (! machine.isRaspberryPi) {
"30-main-nic" = {
matchConfig.Name = "en*";
networkConfig = {
DHCP = "yes";
};
};
})
(lib.optionalAttrs machine.isRaspberryPi {
"30-main-nic" = {
matchConfig.Name = "end*";
networkConfig = {
IPv6AcceptRA = true;
DHCP = "yes";
};
};
})
];
};
};
}