nix-config/hosts/m3-r1/services/mariadb.nix

16 lines
212 B
Nix
Raw Normal View History

2024-05-15 09:25:27 +00:00
{
pkgs,
config,
...
}: {
services.mysql = {
enable = true;
package = pkgs.mariadb;
};
services.mysqlBackup = {
enable = true;
calendar = "03:00:00";
databases = ["matomo"];
};
}