mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
feat: a bunch of services...!
This commit is contained in:
parent
79ebb1a48e
commit
7f6562ea70
13 changed files with 214 additions and 76 deletions
20
nixos/servers/tt-rss/service.nix
Normal file
20
nixos/servers/tt-rss/service.nix
Normal 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"
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue