Another missing semicolon also wrong allow statement

This commit is contained in:
Charlotte 🦝 Delenk 2022-01-15 14:48:28 +01:00
parent 53c2de53d1
commit 97265da7c0
Signed by: darkkirb
GPG key ID: 015E3768A70AFBC5

View file

@ -1,7 +1,7 @@
{ config, ... }:
let
internalIP = import ../../utils/getInternalIP.nix config;
createListenEntry = ip: "inet ${ip} port 8653 allow { ${ip} };";
createListenEntry = ip: "inet ${ip} port 8653 allow { any; };";
listenEntries = builtins.map createListenEntry internalIP.listenIPsBare;
in
{