From a59b331bbe0d45974022c69238a88b453fce303e Mon Sep 17 00:00:00 2001 From: blake Date: Fri, 10 Oct 2025 21:51:31 -0500 Subject: [PATCH] 237 current 2025-10-10 21:49:29 25.05.20251006.20c4598 6.12.50 * --- flake.nix | 2 +- modules/homelab/gameservers/minecraft_recpro/default.nix | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 0cc7d1a..b065eb5 100644 --- a/flake.nix +++ b/flake.nix @@ -1,6 +1,6 @@ # flake for blakes nixos config # define new devices in outputs -# generation: 236 current 2025-10-10 21:46:09 25.05.20251006.20c4598 6.12.50 * +# generation: 237 current 2025-10-10 21:49:29 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 2180aed..477ea68 100644 --- a/modules/homelab/gameservers/minecraft_recpro/default.nix +++ b/modules/homelab/gameservers/minecraft_recpro/default.nix @@ -86,8 +86,7 @@ in } ]; initialScript = pkgs.writeText "minecraft_recpro-init.sql" '' - SET @passwd = LOAD_FILE('/run/secrets/minecraft_recpro_db_passwd'); - CREATE USER IF NOT EXISTS 'minecraft_recpro'@'localhost' IDENTIFIED BY '$(cat ${sec."minecraft_recpro_db_passwd".path})'; + CREATE USER IF NOT EXISTS 'minecraft_recpro'@'localhost' IDENTIFIED BY 'IKNOWTHISISBADIJUSTNEEDTHISTOWORKRNPLS'; GRANT ALL PRIVILEGES ON minecraft_recpro_db.* TO 'minecraft_recpro'@'localhost'; FLUSH PRIVILEGES; '';