Another missing semicolon also wrong allow statement
This commit is contained in:
parent
53c2de53d1
commit
97265da7c0
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue