From 9dd79f678898983080de4d1234db89fe7c85d46e Mon Sep 17 00:00:00 2001 From: arouzing Date: Thu, 2 Feb 2023 18:18:16 -0500 Subject: [PATCH] importing docker config --- hosts/example.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/hosts/example.nix b/hosts/example.nix index fe6ace0..fdd4902 100644 --- a/hosts/example.nix +++ b/hosts/example.nix @@ -4,7 +4,7 @@ imports = [ # Include the results of the hardware scan. # ../.modules/base/hardware.nix - # ../.modules/services/docker.nix + ../.modules/services/docker.nix ../.modules/users/arouzing.nix ../.modules/services/openssh.nix ]; @@ -28,11 +28,11 @@ time.timeZone = "America/New_York"; # Open ports in the firewall. - # networking.firewall = { - # enable = true; - # allowedTCPPorts = []; - # allowedUDPPorts = []; - # }; + networking.firewall = { + enable = true; + allowedTCPPorts = []; + allowedUDPPorts = []; + }; ## main services system.stateVersion = "22.11";