quitte: add mysql

This commit is contained in:
Jonas Gaffke 2024-02-02 16:59:07 +01:00 committed by quitte
parent 4177a2ba0a
commit cc09c14143

7
modules/mysql.nix Normal file
View file

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