From cf901588713073d1162df508dfc5aed628dc8b28 Mon Sep 17 00:00:00 2001 From: Tigor Hutasuhut Date: Wed, 21 Aug 2024 21:12:58 +0700 Subject: [PATCH] minecraft: fix wrong autorestart target --- system/podman/minecraft.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/podman/minecraft.nix b/system/podman/minecraft.nix index 56d8021..59b1079 100644 --- a/system/podman/minecraft.nix +++ b/system/podman/minecraft.nix @@ -59,7 +59,7 @@ in description = "Podman container ${name} autorestart"; serviceConfig = { Type = "oneshot"; - ExecStart = "${pkgs.podman}/bin/podman restart podman-${name}"; + ExecStart = "${pkgs.podman}/bin/podman restart ${name}"; }; };