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"; - }; - }; - }; - -}