From 0cabf85b8fc2bf10a4cb880371f95c86f3656bf3 Mon Sep 17 00:00:00 2001 From: Linus Heckemann Date: Sun, 27 Oct 2019 10:46:10 +0100 Subject: [PATCH] initrd-loop: allow continuing boot by killing sleep --- modules/initrd-loop.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/initrd-loop.nix b/modules/initrd-loop.nix index 3b2756a6..4505241f 100644 --- a/modules/initrd-loop.nix +++ b/modules/initrd-loop.nix @@ -24,7 +24,7 @@ in init = lib.mkOrder (BEFORE_SWITCH_ROOT_INIT+1) '' echo "Looping here forever..." while true; do - sleep 3600 + sleep 3600 || break done ''; };