1
0
Fork 0
dotfiles/system/nixos/freshrss.nix

22 lines
463 B
Nix
Raw Normal View History

2023-01-24 13:33:54 +00:00
{ config, secret, ... }:
{
services.freshrss = {
enable = true;
inherit (secret.freshrss) defaultUser;
2023-02-05 16:52:42 +00:00
passwordFile = config.age.secrets.freshrss-user-password.path;
2023-01-24 13:33:54 +00:00
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;
};
};
}