diff --git a/flake.nix b/flake.nix index 526b76e..0b5101e 100644 --- a/flake.nix +++ b/flake.nix @@ -1,6 +1,6 @@ # flake for blakes nixos config # define new devices in outputs -# generation: 225 current 2025-10-10 21:01:34 25.05.20251006.20c4598 6.12.50 * +# generation: 226 current 2025-10-10 21:05:33 25.05.20251006.20c4598 6.12.50 * { description = "blakes nix config"; inputs = { diff --git a/modules/homelab/gameservers/minecraft_recpro/default.nix b/modules/homelab/gameservers/minecraft_recpro/default.nix index fbaef4b..a1c819c 100644 --- a/modules/homelab/gameservers/minecraft_recpro/default.nix +++ b/modules/homelab/gameservers/minecraft_recpro/default.nix @@ -81,14 +81,12 @@ in ensureDatabases = [ "minecraft_recpro_db" ]; ensureUsers = [ { - name = "minecraft"; + name = "minecraft_recpro"; ensurePermissions = { "minecraft_recpro_db.*" = "ALL PRIVILEGES"; }; } ]; - initialScript = pkgs.writeText "minecraft_recpro-init.sql" '' - CREATE DATABASE IF NOT EXISTS minecraft_recpro_db; - CREATE USER IF NOT EXISTS 'minecraft_recpro'@'localhost' IDENTIFIED BY '$(cat ${config.sops.secrets."minecraft_recpro_db_passwd".path})'; - GRANT ALL PRIVILEGES ON minecraft_recpro_db.* TO 'minecraft_recpro'@'localhost'; + initialScript = pkgs.writeText "minecraft_recpro_init.sql" '' + ALTER USER 'minecraft_recpro'@'localhost' IDENTIFIED BY '$(cat ${config.sops.secrets."minecraft_recpro_db_passwd".path})'; FLUSH PRIVILEGES; ''; };