From 3f9936bcd4e83d27773a838d95066308cc0dea28 Mon Sep 17 00:00:00 2001 From: NyxErinys Date: Mon, 18 May 2026 00:31:27 -0500 Subject: [PATCH] new commands --- modules/k3s/deployments/ubuntu.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/k3s/deployments/ubuntu.nix b/modules/k3s/deployments/ubuntu.nix index 69c14b9..6ed0959 100644 --- a/modules/k3s/deployments/ubuntu.nix +++ b/modules/k3s/deployments/ubuntu.nix @@ -8,7 +8,8 @@ { name = "ubuntu"; image = "ubuntu:latest"; - command = ["tail" "-f" "/dev/null"]; + command = [ "sh" "-c" ]; + args = [ "tail" "-f" "/dev/null" ] } ]; };