mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-03-29 01:07:24 -04:00
21 lines
366 B
Nix
21 lines
366 B
Nix
{pkgs, ...}: {
|
|
environment.systemPackages = with pkgs; [
|
|
mycli
|
|
];
|
|
|
|
networking.firewall.allowedTCPPorts = [
|
|
3306
|
|
];
|
|
|
|
services.mysql = {
|
|
enable = true;
|
|
package = pkgs.mariadb_118;
|
|
configFile = pkgs.writeText "my.cnf" ''
|
|
[mariadb]
|
|
log-bin
|
|
server_id=1
|
|
log-basename=master1
|
|
binlog-format=mixed
|
|
'';
|
|
};
|
|
}
|