From bfceb118ca32a682d27430d4f7523816ff41bec1 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Thu, 19 Dec 2024 18:23:31 +0100 Subject: [PATCH] chore: remove unused non-working service --- modules/services/komga.nix | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 modules/services/komga.nix diff --git a/modules/services/komga.nix b/modules/services/komga.nix deleted file mode 100644 index f5f18a5..0000000 --- a/modules/services/komga.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ lib, config, pkgs, ... }: { - services.komga = { - enable = true; - port = 2872; - stateDir = "/var/lib/komga"; - openFirewall = true; - user = "liv"; - }; - - services = { - nginx.virtualHosts."read.liv.town" = { - useACMEHost = "liv.town"; - forceSSL = true; - locations."/" = { - proxyPass = "http://localhost:2872"; - }; - }; - }; - -}