From e46b61c74507b7c117582c38fe33c87a650fb6fe Mon Sep 17 00:00:00 2001 From: sefidel Date: Sat, 7 Oct 2023 21:23:59 +0900 Subject: feat(modules/tt-rss): init --- modules/services/tt-rss.nix | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 modules/services/tt-rss.nix (limited to 'modules') diff --git a/modules/services/tt-rss.nix b/modules/services/tt-rss.nix new file mode 100644 index 0000000..4351065 --- /dev/null +++ b/modules/services/tt-rss.nix @@ -0,0 +1,42 @@ +{ config, lib, pkgs, ... }: + +with lib; +let + cfg = config.modules.services.tt-rss; +in +{ + options.modules.services.tt-rss = { + enable = mkEnableOption "Tiny Tiny RSS Client"; + domain = mkOption { type = types.str; }; + realHost = mkOption { type = types.str; default = "rss.${cfg.domain}"; }; + }; + + config = mkIf cfg.enable { + services.tt-rss = { + enable = true; + virtualHost = cfg.realHost; + selfUrlPath = "https://${cfg.realHost}"; + + themePackages = [ + pkgs.tt-rss-theme-feedly + ]; + + plugins = [ + "auth_internal" + "note" + ]; + + database = { + type = "pgsql"; + password = null; + host = "/run/postgresql"; + }; + + }; + + services.nginx.virtualHosts.${cfg.realHost} = { + forceSSL = true; + useACMEHost = cfg.domain; + }; + }; +} -- cgit 1.4.1