11 lines
180 B
Nix
11 lines
180 B
Nix
|
{ config, ... }:
|
||
|
|
||
|
{
|
||
|
services.tt-rss = {
|
||
|
enable = true;
|
||
|
registration.enable = true;
|
||
|
virtualHost = "rss.graven.dev";
|
||
|
selfUrlPath = "https://rss.graven.dev";
|
||
|
};
|
||
|
}
|