nixos/systemd-boot: remove semicolon

This commit is contained in:
Jared Baur 2024-08-20 22:30:57 -07:00
parent 6327b07b25
commit 05aefd6f05
No known key found for this signature in database

View File

@ -107,7 +107,7 @@ def write_loader_conf(profile: str | None, generation: int, specialisation: str
if not EDITOR:
f.write("editor 0\n")
if REBOOT_FOR_BITLOCKER:
f.write("reboot-for-bitlocker yes\n");
f.write("reboot-for-bitlocker yes\n")
f.write(f"console-mode {CONSOLE_MODE}\n")
f.flush()
os.fsync(f.fileno())