chore: specify default bootloader as systemd-boot

Signed-off-by: Chinmay D. Pai <chinmaydpai@gmail.com>
This commit is contained in:
Chinmay D. Pai 2024-10-09 17:57:07 +05:30
parent 150b426119
commit bea59a8f3c
Signed by: thunderbottom
GPG Key ID: 75507BE256F40CED

View File

@ -23,6 +23,7 @@
bootloader = lib.mkOption { bootloader = lib.mkOption {
type = lib.types.enum ["systemd-boot" "grub"]; type = lib.types.enum ["systemd-boot" "grub"];
description = "Bootloader to use, can be either `systemd-boot` or `grub`"; description = "Bootloader to use, can be either `systemd-boot` or `grub`";
default = "systemd-boot";
}; };
}; };