feat: a bunch of services...!

This commit is contained in:
Kat Inskip 2024-05-26 15:51:05 -07:00
parent 79ebb1a48e
commit 7f6562ea70
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
13 changed files with 214 additions and 76 deletions

View file

@ -0,0 +1,20 @@
{ pkgs, ... }: {
services.tt-rss = {
enable = true;
virtualHost = "rss.kittywit.ch";
selfUrlPath = "https://rss.kittywit.ch";
database = {
type = "pgsql";
host = null;
name = "tt_rss";
createLocally = false;
};
plugins = [
"auth_internal"
"auth_ldap"
"note"
"updater"
"api_feedreader"
];
};
}