mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 01:33:55 -05:00
opened ports for soulseek
This commit is contained in:
parent
7c9cba9064
commit
bdadfded92
|
@ -29,19 +29,23 @@
|
|||
# Enable the OpenSSH daemon.
|
||||
services.openssh.enable = true;
|
||||
|
||||
# Open TXP ports for SSH and Syncthing.
|
||||
# Open TCP ports for SSH and Syncthing.
|
||||
networking.firewall.allowedTCPPorts = [ 22 8384 22000 ];
|
||||
|
||||
# Open UDP ports for Syncthing.
|
||||
networking.firewall.allowedUDPPorts = [ 22000 21027 ];
|
||||
|
||||
# Open ports for KDE Connect.
|
||||
networking.firewall.allowedTCPPortRanges = [
|
||||
# KDE Connect
|
||||
{ from = 1714; to = 1764; }
|
||||
# Soulseek
|
||||
{ from = 2234; to = 2239; }
|
||||
];
|
||||
|
||||
networking.firewall.allowedUDPPortRanges = [
|
||||
# KDE Connect
|
||||
{ from = 1714; to = 1764; }
|
||||
# Soulseek
|
||||
{ from = 2234; to = 2239; }
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue