From b2e7e05aac3b744928e7f34c1d73fa0b44f169d3 Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Wed, 22 Nov 2023 18:47:35 +0100 Subject: [PATCH] Make it all quotes --- nixos/queen/nextcloud.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/nixos/queen/nextcloud.nix b/nixos/queen/nextcloud.nix index 886fb62..ccf664a 100644 --- a/nixos/queen/nextcloud.nix +++ b/nixos/queen/nextcloud.nix @@ -88,12 +88,12 @@ mysqld = { log-error = "/var/log/mysql_err.log"; port = 3306; - character_set_server = utf8mb4; - collation_server = utf8mb4_general_ci; - transaction_isolation = READ-COMMITTED; - binlog_format = ROW; - innodb_large_prefix = on; - innodb_file_format = barracuda; + character_set_server = "utf8mb4"; + collation_server = "utf8mb4_general_ci"; + transaction_isolation = "READ-COMMITTED"; + binlog_format = "ROW"; + innodb_large_prefix = "on"; + innodb_file_format = "barracuda"; innodb_file_per_table = 1; }; };