Iwakura/hardware/iwakura/network.nix
2021-04-27 22:47:09 +00:00

20 lines
373 B
Nix

{
networking = {
hostName = "iwakura";
useDHCP = false;
firewall = {
allowedTCPPorts = [ 8384 6881 6882 6883 6884 6697 ];
allowedUDPPorts = [ 6881 6882 6883 6884 6697 ];
allowedTCPPortRanges = [
{ from = 8995; to = 8999; }
];
};
interfaces = {
enp0s25.useDHCP = true;
wlp3s0.useDHCP = true;
};
};
}