From a4b900582aa71695bc628a1b063334c5e892af85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Sat, 24 May 2025 19:11:26 -0300 Subject: [PATCH] 25.05: fix nextcloud dbtype --- hosts/phantom/nextcloud.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/phantom/nextcloud.nix b/hosts/phantom/nextcloud.nix index a7ef9f3..28d76a1 100644 --- a/hosts/phantom/nextcloud.nix +++ b/hosts/phantom/nextcloud.nix @@ -1,7 +1,6 @@ { config, pkgs, - inputs, ... }: { @@ -11,6 +10,7 @@ hostName = "cloud.lelgenio.com"; https = true; config = { + dbtype = "sqlite"; # TODO: move to single postgres db adminpassFile = config.age.secrets.phantom-nextcloud.path; }; };