You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
428 B
Nix

{ config, pkgs, ... }:
{
networking = {
hostName = "primus";
networkmanager.enable = true;
firewall = {
enable = true;
allowedTCPPorts = [ 53317 ]; # LocalSend
allowedTCPPortRanges = [
{ from = 1714; to = 1764; } # KDE Connect
];
allowedUDPPorts = [ 53317 ]; # LocalSend
allowedUDPPortRanges = [
{ from = 1714; to = 1764; } # KDE Connect
];
};
};
}