From c2485cc0dbe2d003b996bdb2fde5c51a1a84f7aa Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Sat, 13 Jun 2026 11:49:37 +0200 Subject: [PATCH] feat(naromk3): open ports for email server --- flake.nix | 2 +- hosts/naromk3/{configuration.nix => default.nix} | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) rename hosts/naromk3/{configuration.nix => default.nix} (94%) diff --git a/flake.nix b/flake.nix index 0545d51..19e5f45 100644 --- a/flake.nix +++ b/flake.nix @@ -186,7 +186,7 @@ srvos.nixosModules.server srvos.nixosModules.hardware-hetzner-cloud srvos.nixosModules.mixins-terminfo - ./hosts/naromk3/configuration.nix + ./hosts/naromk3 ]; }; pinetab2 = pinetabConfig "x86_64-linux" ./hosts/pinetab2/gnome.nix; diff --git a/hosts/naromk3/configuration.nix b/hosts/naromk3/default.nix similarity index 94% rename from hosts/naromk3/configuration.nix rename to hosts/naromk3/default.nix index 81bfa56..101f0a6 100644 --- a/hosts/naromk3/configuration.nix +++ b/hosts/naromk3/default.nix @@ -23,9 +23,12 @@ id = "0003beef"; firewall = { openPorts = [ - 22 # Gitea SSH - 80 # HTTP + 22 # Gitea SSH + 25 # SMTP + 80 # HTTP 443 # HTTPS + 465 # SMTPS + 993 # IMAPS ]; }; };