From e680d3a088b9a84b2fe07c01f82ea389c2c298dd Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Sun, 26 Nov 2023 19:18:36 +0100 Subject: [PATCH] Maybe also comment out the ensure bs --- nixos/queen/nextcloud.nix | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/nixos/queen/nextcloud.nix b/nixos/queen/nextcloud.nix index 189c269..4d9b5ef 100644 --- a/nixos/queen/nextcloud.nix +++ b/nixos/queen/nextcloud.nix @@ -95,20 +95,20 @@ # Ensure the database, user, and permissions always exist ensureDatabases = ["nextcloud" "onlyoffice" "akkoma"]; - ensureUsers = [ - { - name = "nextcloud"; - ensurePermissions."DATABASE nextcloud" = "ALL PRIVILEGES"; - } - { - name = "onlyoffice"; - ensurePermissions."DATABASE onlyoffice" = "ALL PRIVILEGES"; - } - { - name = "akkoma"; - ensurePermissions."DATABASE akkoma" = "ALL PRIVILEGES"; - } - ]; + # ensureUsers = [ + # { + # name = "nextcloud"; + # ensurePermissions."DATABASE nextcloud" = "ALL PRIVILEGES"; + # } + # { + # name = "onlyoffice"; + # ensurePermissions."DATABASE onlyoffice" = "ALL PRIVILEGES"; + # } + # { + # name = "akkoma"; + # ensurePermissions."DATABASE akkoma" = "ALL PRIVILEGES"; + # } + # ]; }; services.aria2 = {