mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
20 lines
No EOL
454 B
Nix
20 lines
No EOL
454 B
Nix
{ 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"
|
|
];
|
|
};
|
|
} |