summary refs log tree commit diff
path: root/nixos/tests/mysql/mysql-autobackup.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/tests/mysql/mysql-autobackup.nix')
-rw-r--r--nixos/tests/mysql/mysql-autobackup.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/mysql/mysql-autobackup.nix b/nixos/tests/mysql/mysql-autobackup.nix
index 65576e52a53..b0ec7daaf05 100644
--- a/nixos/tests/mysql/mysql-autobackup.nix
+++ b/nixos/tests/mysql/mysql-autobackup.nix
@@ -8,7 +8,7 @@ import ./../make-test-python.nix ({ pkgs, lib, ... }:
     { pkgs, ... }:
     {
       services.mysql.enable = true;
-      services.mysql.package = pkgs.mysql;
+      services.mysql.package = pkgs.mariadb;
       services.mysql.initialDatabases = [ { name = "testdb"; schema = ./testdb.sql; } ];
 
       services.automysqlbackup.enable = true;