diff options
Diffstat (limited to 'host/Rory-nginx/services/containers')
-rwxr-xr-x | host/Rory-nginx/services/containers/pluralcontactbotpoc/container.nix | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/host/Rory-nginx/services/containers/pluralcontactbotpoc/container.nix b/host/Rory-nginx/services/containers/pluralcontactbotpoc/container.nix index 6799419..022e160 100755 --- a/host/Rory-nginx/services/containers/pluralcontactbotpoc/container.nix +++ b/host/Rory-nginx/services/containers/pluralcontactbotpoc/container.nix @@ -9,18 +9,18 @@ privateNetwork = true; autoStart = true; - config = import ./root.nix { - inherit config; - #etc."resolv.conf".text = '' - # nameserver 8.8.8.8 - # nameserver 8.4.4.8 - # nameserver 1.1.1.1 - # nameserver 1.0.0.1 - #''; - #networking.firewall = { - # enable = true; - # allowedTCPPorts = [ 80 443 ]; - #}; + + config = import ./root.nix // { + etc."resolv.conf".text = '' + nameserver 8.8.8.8 + nameserver 8.4.4.8 + nameserver 1.1.1.1 + nameserver 1.0.0.1 + ''; + networking.firewall = { + enable = true; + allowedTCPPorts = [ 80 443 ]; + }; }; } \ No newline at end of file |