added required passwordFile property

This commit is contained in:
chloe 2024-07-15 18:47:34 +02:00
parent d4a1799e36
commit 7562369ed7
2 changed files with 33 additions and 0 deletions

View file

@ -1,8 +1,16 @@
{ config, lib, ... }:
{
sops.secrets = {
path = ../secrets/freshrss.json;
freshrss_username = { };
freshrss_password = { };
};
services.freshrss = {
enable = true;
language = "fr";
defaultUser = config.sops.freshrss_username;
passwordFile = config.sops.freshrss_password.path;
database = {
type = "sqlite";
};