Add mariadb

This commit is contained in:
hodasemi 2025-06-18 10:44:51 +02:00
parent 6473ce5e65
commit af27a144ea

View file

@ -44,4 +44,14 @@ in
extraGroups = [ "docker" ];
};
};
services = {
mysql = {
enable = true;
package = pkgs.mariadb;
settings = {
port = 8000;
};
};
};
}