From 9880f9dd708dcf8bb10e496b80117a6390eb5033 Mon Sep 17 00:00:00 2001 From: confusedalex Date: Wed, 22 Apr 2026 16:00:16 +0200 Subject: [PATCH] nixos-init: fix example of extraBin --- nixos/modules/system/boot/systemd/initrd.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/system/boot/systemd/initrd.nix b/nixos/modules/system/boot/systemd/initrd.nix index 370fceb94844..4f19ca1edf44 100644 --- a/nixos/modules/system/boot/systemd/initrd.nix +++ b/nixos/modules/system/boot/systemd/initrd.nix @@ -248,7 +248,7 @@ in ''; example = literalExpression '' { - umount = ''${pkgs.util-linux}/bin/umount; + umount = "''${pkgs.util-linux}/bin/umount"; } ''; type = types.attrsOf types.path;