From 955e3cd8fe15ed8a398f5dffc504984735f22503 Mon Sep 17 00:00:00 2001 From: r-vdp Date: Thu, 30 Nov 2023 17:13:42 +0100 Subject: [PATCH] kexec: fix shellcheck issues --- nixos/modules/system/boot/kexec.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/system/boot/kexec.nix b/nixos/modules/system/boot/kexec.nix index 02c2713ede11..f9071cef9129 100644 --- a/nixos/modules/system/boot/kexec.nix +++ b/nixos/modules/system/boot/kexec.nix @@ -25,7 +25,7 @@ exit 1 fi echo "Loading NixOS system via kexec." - exec kexec --load $p/kernel --initrd=$p/initrd --append="$(cat $p/kernel-params) init=$p/init" + exec kexec --load "$p/kernel" --initrd="$p/initrd" --append="$(cat "$p/kernel-params") init=$p/init" ''; }; };