mirror of
https://git.feal.no/felixalb/nixos-config.git
synced 2025-01-09 11:51:14 +01:00
11 lines
138 B
Nix
11 lines
138 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
services.mysql = {
|
|
enable = true;
|
|
package = pkgs.mariadb;
|
|
};
|
|
|
|
# TODO: services.mysqlBackup
|
|
}
|