pantheon/systems/modules/bootloaders/extlinux.nix
2025-03-12 03:49:11 +08:00

6 lines
229 B
Nix

{
# Use the extlinux boot loader. (NixOS wants to enable GRUB by default)
boot.loader.grub.enable = false;
# Enables the generation of /boot/extlinux/extlinux.conf
boot.loader.generic-extlinux-compatible.enable = true;
}