diff --git a/systems/mio-mio-mate/default.nix b/systems/mio-mio-mate/default.nix index 0c51bc5..43e70a6 100644 --- a/systems/mio-mio-mate/default.nix +++ b/systems/mio-mio-mate/default.nix @@ -49,6 +49,13 @@ services.nginx = { enable = true; + virtualHosts = { + "manga.it3" = { + locations."/" = { + proxyPass = "http://localhost:8080/"; + }; + }; + }; }; services.dnsmasq = { @@ -72,4 +79,27 @@ nginx.hostName = "wiki.it3"; passwordFile = "${../../init/mediawiki}"; }; + + services.suwayomi-server = { + enable = true; + settings = { + server = { + systemTrayEnabled = true; + extensionRepos = [ + "https://raw.githubusercontent.com/keiyoushi/extensions/repo/index.min.json" + ]; + webUIEnabled = true; + initialOpenInBrowserEnabled = true; + webUIInterface = "browser"; + webUIFlavor = "WebUI"; + }; + }; + }; + + services.freshrss = { + enable = true; + virtualHost = "rss.it3"; + authType = "none"; + baseUrl = "http://rss.it3"; + }; }