diff --git a/nixos/queen/nextcloud.nix b/nixos/queen/nextcloud.nix index 6339c87..6da76f1 100644 --- a/nixos/queen/nextcloud.nix +++ b/nixos/queen/nextcloud.nix @@ -97,20 +97,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 = {