Services kw.fw remaining fixes

This commit is contained in:
kat witch 2021-08-08 03:52:22 +01:00
parent 4c562cb85e
commit 55269d5ffa
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
2 changed files with 10 additions and 4 deletions

View file

@ -3,6 +3,8 @@
with lib;
{
kw.fw.private.tcp.ports = [ 6600 32101 ];
kw.fw.public.tcp.ports = [ 6600 32101 ];
kw.fw = {
public.tcp.ports = [ 6600 32101 ];
private.tcp.ports = [ 6600 32101 ];
};
}

View file

@ -3,8 +3,12 @@
with lib;
{
kw.fw.public.tcp.ports = singleton 64738;
kw.fw.public.udp.ports = singleton 64738;
kw.fw = {
public = {
tcp.ports = singleton 64738;
udp.ports = singleton 64738;
};
};
services.murmur = {
enable = true;