treewide: Fix mysql alias deprecation breakage

62733b37b4 broke evaluation in all
places `pkgs.mysql` was used. Fix this by changing all occurrences to
`pkgs.mariadb`.

(cherry picked from commit 59e0120aa5c1241d48048afa615e25c65d7e366d)
This commit is contained in:
talyz
2021-06-05 17:11:40 +00:00
committed by github-actions[bot]
parent e3ede71a0f
commit a60818cacd
12 changed files with 16 additions and 16 deletions
+1 -1
View File
@@ -644,7 +644,7 @@ let
services.mysql = mkIf mysqlLocal {
enable = true;
package = mkDefault pkgs.mysql;
package = mkDefault pkgs.mariadb;
ensureDatabases = [ cfg.database.name ];
ensureUsers = [
{