blob: fa982e4d84b17dd56302e1c5a1c83acc98d065ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.modules.services.rss;
in
{
options.modules.services.rss = {
enable = mkEnableOption "RSS Aggregator";
domain = mkOption { type = types.str; };
realHost = mkOption { type = types.str; default = "rss.${cfg.domain}"; };
secrets.admin-password = mkOption { type = types.str; description = "path to file containing admin password"; };
bridge = {
enable = mkEnableOption "RSS Bridge";
domain = mkOption { type = types.str; default = cfg.domain; };
realHost = mkOption { type = types.str; default = "rss-bridge.${cfg.bridge.domain}"; };
whitelist = mkOption { type = types.listOf types.str; default = []; };
};
};
config = mkIf cfg.enable (mkMerge [
{
services.freshrss = {
enable = true;
virtualHost = cfg.realHost;
baseUrl = "https://${cfg.realHost}";
defaultUser = "admin";
passwordFile = cfg.secrets.admin-password;
database = {
type = "pgsql";
host = "/run/postgresql";
};
};
modules.persistence.directories = [
"/var/lib/freshrss"
];
services.nginx.virtualHosts.${cfg.realHost} = {
forceSSL = true;
useACMEHost = cfg.domain;
};
}
(mkIf cfg.bridge.enable {
services.rss-bridge = {
enable = true;
virtualHost = cfg.bridge.realHost;
} // optionalAttrs (cfg.bridge.whitelist != []) {
whitelist = cfg.bridge.whitelist;
};
modules.persistence.directories = [
"/var/lib/rss-bridge"
];
services.nginx.virtualHosts.${cfg.bridge.realHost} = {
forceSSL = true;
useACMEHost = cfg.bridge.domain;
};
})
]);
}
|