From ae034a058166c5bd036967750bb17126294cd778 Mon Sep 17 00:00:00 2001 From: Kabbone Date: Tue, 27 Dec 2022 20:14:42 +0100 Subject: [PATCH] hosts: add domain to server --- hosts/server/hardware-configuration.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/server/hardware-configuration.nix b/hosts/server/hardware-configuration.nix index 8f94eb7..daecb68 100644 --- a/hosts/server/hardware-configuration.nix +++ b/hosts/server/hardware-configuration.nix @@ -58,6 +58,7 @@ networking = { useDHCP = false; # Deprecated hostName = "dmz"; + domain = "kabtop.de"; networkmanager = { enable = true; }; @@ -79,7 +80,7 @@ firewall = { enable = true; allowedUDPPorts = [ ]; - allowedTCPPorts = [ 80 443 ]; + allowedTCPPorts = [ 80 443 8448 ]; }; };