Add a mariadb module

This commit is contained in:
Andreas Zweili 2022-05-23 15:59:07 +02:00
parent d6f206fe66
commit be01f4ab95
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
services.mysql = {
enable = true;
package = pkgs.mariadb;
};
}