From 53609bf317ac940e2223b85f6a8c3518fb1ac5df Mon Sep 17 00:00:00 2001 From: Nico Jensch Date: Thu, 14 Nov 2024 19:37:42 +0100 Subject: [PATCH] feat: allow ServerBox access; add mail account --- nixos/hosts/garuda-mail.nix | 3 +++ nixos/modules/hardening.nix | 1 + 2 files changed, 4 insertions(+) diff --git a/nixos/hosts/garuda-mail.nix b/nixos/hosts/garuda-mail.nix index 9d074028..0e370ec7 100644 --- a/nixos/hosts/garuda-mail.nix +++ b/nixos/hosts/garuda-mail.nix @@ -159,6 +159,9 @@ in "test@dr460nf1r3.org" = { hashedPasswordFile = "/var/garuda/secrets/mail/testatdf"; }; + "noreply@dr460nf1r3.org" = { + hashedPasswordFile = "/var/garuda/secrets/mail/noreplyatdf"; + }; }; indexDir = "/var/lib/dovecot/indices"; monitoring = { diff --git a/nixos/modules/hardening.nix b/nixos/modules/hardening.nix index eca438ca..23184699 100644 --- a/nixos/modules/hardening.nix +++ b/nixos/modules/hardening.nix @@ -30,6 +30,7 @@ _: { "sntrup761x25519-sha512@openssh.com" ]; Macs = [ + "hmac-sha2-512" # Required for ServerBox "hmac-sha2-512-etm@openssh.com" "hmac-sha2-256-etm@openssh.com" "umac-128-etm@openssh.com"