nix-configurations/hosts/lkk-nix-1/services/mariadb.nix

14 lines
214 B
Nix
Raw Normal View History

2023-02-01 11:38:23 +00:00
{ pkgs, config, ... }:
{
services.mysql = {
enable = true;
package = pkgs.mariadb;
2023-02-05 13:36:38 +00:00
};
services.mysqlBackup = {
enable = true;
calendar = "03:00:00";
databases = [ "lanakk_blog" ];
};
2023-02-01 11:38:23 +00:00
}