From 1340ee934dec7ce1fb624fb568270e9b2f07d647 Mon Sep 17 00:00:00 2001 From: s-prechtl Date: Sat, 21 Jun 2025 22:41:12 +0200 Subject: [PATCH] feat: nextcloud updates --- hosts/hitsugibune/nextcloud.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hosts/hitsugibune/nextcloud.nix b/hosts/hitsugibune/nextcloud.nix index 87f2a0d..81d6826 100644 --- a/hosts/hitsugibune/nextcloud.nix +++ b/hosts/hitsugibune/nextcloud.nix @@ -1,10 +1,14 @@ {config, ...}: { # This is only a temporary password and will be changed - environment.etc."nextcloud-admin-pass".text = "samc"; + environment.etc."nextcloud-admin-pass".text = "samcsamc11"; services.nextcloud = { enable = true; hostName = "sprechtl.ddns.net"; https = true; + config = { + adminpassFile = "/etc/nextcloud-admin-pass"; + dbtype = "sqlite"; + }; }; services.nginx.virtualHosts.${config.services.nextcloud.hostName} = {