From b2ecd770c8e55d82961754665f07298571a52050 Mon Sep 17 00:00:00 2001 From: satr14 Date: Sat, 9 May 2026 23:40:13 +0700 Subject: [PATCH] fix rcon-cli path --- modules/system/homelab/mc.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system/homelab/mc.nix b/modules/system/homelab/mc.nix index 409b5a3..0c778cb 100644 --- a/modules/system/homelab/mc.nix +++ b/modules/system/homelab/mc.nix @@ -59,7 +59,7 @@ in { # "reduced_debug_info" = false; # "global_sound_events" = false; }; in lib.concatStringsSep "\n" (map - (rule: "rcon-cli --password ${rcon-pass} gamerule ${rule} ${toString (gamerules.${rule})}") + (rule: "${pkgs.rcon-cli} --password ${rcon-pass} gamerule ${rule} ${toString (gamerules.${rule})}") (lib.attrNames gamerules) );