nixos/modules/mariadb/default.nix

9 lines
117 B
Nix
Raw Normal View History

2022-05-23 15:59:07 +02:00
{ pkgs, ... }:
{
services.mysql = {
enable = true;
package = pkgs.mariadb;
2022-05-23 16:10:39 +02:00
bind = "172.18.0.1";
2022-05-23 15:59:07 +02:00
};
}