From f23177f96df214fc3d8cc02a880fe56c7d8830e8 Mon Sep 17 00:00:00 2001 From: Rouven Seifert Date: Wed, 13 Mar 2024 16:22:25 +0100 Subject: [PATCH] nuc: remove hydra file --- hosts/nuc/modules/hydra/default.nix | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 hosts/nuc/modules/hydra/default.nix diff --git a/hosts/nuc/modules/hydra/default.nix b/hosts/nuc/modules/hydra/default.nix deleted file mode 100644 index f478138..0000000 --- a/hosts/nuc/modules/hydra/default.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ config, ... }: -let - domain = "hydra.${config.networking.domain}"; -in -{ - services.hydra = { - enable = true; - port = 4000; - hydraURL = domain; - notificationSender = "hydra@localhost"; - buildMachinesFiles = [ ]; - useSubstitutes = true; - - }; - services.nginx.virtualHosts."${domain}" = { - enableACME = true; - forceSSL = true; - locations."/" = { - proxyPass = "http://127.0.0.1:${toString config.services.hydra.port}"; - }; - }; -}