nixos-infra/services/mysql/service.nix
2026-04-01 09:54:15 +03:00

23 lines
280 B
Nix

{
config,
pkgs,
lib,
...
}:
let
inherit (config.machine.mysql)
port
enable
;
in
with lib;
mkIf enable {
services.mysql = {
inherit enable;
package = pkgs.mysql84;
ensureDatabases = [ ];
settings.mysqld = {
inherit port;
};
};
}