From 669ffa7c13d624027c19136c833229da04b6e8b3 Mon Sep 17 00:00:00 2001 From: harry Date: Tue, 16 Jul 2024 09:08:54 +0200 Subject: [PATCH] fixed path file type (was requiring str, got path) --- features/freshrss.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/freshrss.nix b/features/freshrss.nix index 7355b1c..fd87436 100644 --- a/features/freshrss.nix +++ b/features/freshrss.nix @@ -15,7 +15,7 @@ enable = true; language = "fr"; defaultUser = config.sops.secrets.freshrss_username; - passwordFile = config.sops.secrets.freshrss_password.path; + passwordFile = builtins.toString config.sops.secrets.freshrss_password.path; database = { type = "sqlite"; };