From 14c9a4f084ab0111ba8bf27561f2ecce5aa7a15b Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Fri, 6 Feb 2026 11:43:37 +0100 Subject: [PATCH] feat(nix): add new domain to ACME certificate - Added `search.hoyer.world` to the `extraDomainNames` list for the `internal.hoyer.world` ACME certificate. - Ensures proper SSL configuration for the new subdomain. --- systems/x86_64-linux/sgx/acme.nix | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/systems/x86_64-linux/sgx/acme.nix b/systems/x86_64-linux/sgx/acme.nix index 76df2ef..5cf5b00 100644 --- a/systems/x86_64-linux/sgx/acme.nix +++ b/systems/x86_64-linux/sgx/acme.nix @@ -10,12 +10,13 @@ metacfg.services.acmeBase.credentialsFile = config.sops.secrets.internetbs.path; security.acme.certs = { - "internal.hoyer.world" = { - extraDomainNames = [ - "openwebui.hoyer.world" - "syncthing.hoyer.world" - "home.hoyer.world" - ]; - }; + "internal.hoyer.world" = { + extraDomainNames = [ + "openwebui.hoyer.world" + "syncthing.hoyer.world" + "home.hoyer.world" + "search.hoyer.world" + ]; }; + }; }