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

14 lines
203 B
Nix
Raw Permalink Normal View History

2023-07-18 10:53:55 +00:00
{ pkgs, config, ... }:
{
services.mysql = {
enable = true;
package = pkgs.mariadb;
};
services.mysqlBackup = {
enable = true;
calendar = "03:00:00";
databases = [ "" ];
};
}