diff --git a/hosts/hainich/services/limesurvey.nix b/hosts/hainich/services/limesurvey.nix index 12a051f..2f84628 100644 --- a/hosts/hainich/services/limesurvey.nix +++ b/hosts/hainich/services/limesurvey.nix @@ -21,6 +21,7 @@ db = { connectionString = "mysql:host=localhost;port=3306;dbname=limesurvey"; username = "limesurvey"; + password = ""; tablePrefix = "limesurvey_"; charset = "utf8mb4"; }; @@ -48,30 +49,14 @@ }); }; - - # services.postgresql = { - # enable = true; - # ensureDatabases = [ "limesurvey" ]; - # ensureUsers = [ { - # name = "limesurvey"; - # ensurePermissions = { "DATABASE limesurvey" = "ALL PRIVILEGES"; }; - # } ]; - - # authentication = lib.mkForce '' - # # Generated file; do not edit! - # local all all trust - # host limesurvey limesurvey ::1/128 trust - # ''; - # }; - # - services.mysql = { + enable = true; package = pkgs.mariadb; ensureDatabases = [ "limesurvey" ]; ensureUsers = [ { name = "limesurvey"; - ensurePermissions = { "DATABASE limesurvey" = "ALL PRIVILEGES"; }; + ensurePermissions = { "limesurvey.*" = "ALL PRIVILEGES"; }; } ]; };