12 lines
271 B
Nix
12 lines
271 B
Nix
|
{config, ...}: let
|
||
|
inherit (config.services.secrets) secrets;
|
||
|
in {
|
||
|
services.freshrss = {
|
||
|
enable = true;
|
||
|
defaultUser = "chaos";
|
||
|
baseUrl = "https://freshrss.owo.monster";
|
||
|
virtualHost = "127.0.0.1";
|
||
|
passwordFile = secrets.chaos_password.path;
|
||
|
};
|
||
|
}
|