remove unused stuff

This commit is contained in:
goeranh 2026-02-28 03:21:59 +01:00
parent c927f8675b
commit 1a684222e2
No known key found for this signature in database

View file

@ -4,25 +4,6 @@
pkgs, pkgs,
... ...
}: }:
let
generatedAliases = pkgs.writeText "generated-aliases" (
lib.concatStringsSep "\n" (
lib.mapCartesianProduct
({ aliases, domain }: "${aliases}@${domain} root@test.htw.stura-dresden.de")
{
aliases = [
"abuse"
"hostmaster"
"noreply"
"postmaster"
"webmaster"
];
domain = config.mailserver.domains;
}
)
);
in
{ {
imports = [ imports = [
./hardware-configuration.nix ./hardware-configuration.nix
@ -39,10 +20,8 @@ in
defaultGateway.address = "141.56.51.254"; defaultGateway.address = "141.56.51.254";
firewall.allowedTCPPorts = [ firewall.allowedTCPPorts = [
25
80 80
443 443
597
]; ];
}; };