1
0
Fork 0
dotfiles/system/nixos/freshrss.nix
2023-01-24 14:33:54 +01:00

22 lines
440 B
Nix

{ config, secret, ... }:
{
services.freshrss = {
enable = true;
inherit (secret.freshrss) defaultUser;
inherit (secret.freshrss) passwordFile;
inherit (secret.freshrss) baseUrl;
inherit (secret.freshrss) virtualHost;
database = {
type = "pgsql";
host = "10.99.99.3";
port = 5432;
inherit (secret.freshrss.database) user;
inherit (secret.freshrss.database) passFile;
};
};
}