ctucx.git: nixfiles

ctucx' nixfiles

commit c2e8c72ef3ff2b69a93bd26698a26d350b118016
parent 926d6c4ed3c1c82fcb710783e5ef06715b1e7321
Author: Leah (ctucx) <git@ctu.cx>
Date: Fri, 15 Nov 2024 17:39:45 +0100

machines/trabbi/fedi: remove `masto-fe`
2 files changed, 0 insertions(+), 20 deletions(-)
diff --git a/machines/trabbi/fedi/default.nix b/machines/trabbi/fedi/default.nix
@@ -4,7 +4,6 @@
 
   imports = [
     ./gotosocial.nix
-    ./masto-fe.nix
   ];
 
 } 
\ No newline at end of file
diff --git a/machines/trabbi/fedi/masto-fe.nix b/machines/trabbi/fedi/masto-fe.nix
@@ -1,19 +0,0 @@
-{ pkgs, lib, config, ... }:
-
-{
-
-  dns.zones."ctu.cx".subdomains."masto.fedi".CNAME = [ "${config.networking.fqdn}." ];
-
-
-  services.nginx.virtualHosts."masto.fedi.ctu.cx" = {
-    enableACME = true;
-    forceSSL   = true;
-    kTLS       = true;
-    locations."/" = {
-      root     = pkgs.mastoFE-standalone;
-      index    = "index.html";
-      tryFiles = "$uri /index.html";
-    };
-  };
-
-}