Fix missing parenthesis

This commit is contained in:
Josh Buker 2026-01-28 22:56:22 -08:00
parent 1e1205f6f7
commit 8c162f25a7
No known key found for this signature in database
GPG key ID: E077B96C5EFF10F2

View file

@ -66,7 +66,7 @@ in
system.boot.loader.id = "petitboot";
})
(lib.mkIf config.boot.loader.petitboot.enable && options ? sdImage {
(lib.mkIf (config.boot.loader.petitboot.enable && options ? sdImage) {
sdImage.populateRootCommands = lib.mkForce ''
${sdImageInstaller} ${args} -c ${config.system.build.toplevel} -d ./files/kboot.conf
''