Skip to content

Instantly share code, notes, and snippets.

@LnL7
Created May 5, 2017 21:27
Show Gist options
  • Save LnL7/b32a8abe1272133d3d3fc4ba86986ce2 to your computer and use it in GitHub Desktop.
Save LnL7/b32a8abe1272133d3d3fc4ba86986ce2 to your computer and use it in GitHub Desktop.
nixos mysql configuration
{ config, lib, pkgs, ... }:
{
services.mysql.enable = true;
services.mysql.package = pkgs.mysql;
services.mysql.dataDir = "/var/db";
systemd.services.mysql.serviceConfig.Restart = "on-failure";
systemd.services.mysql.serviceConfig.RestartSec = "10s";
services.mysqlBackup.enable = true;
services.mysqlBackup.user = "root";
services.mysqlBackup.databases = [ "foo" ];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment