ROCKPro64-Server/modules/system/devices/boot/extlinux/default.nix
2025-02-28 12:21:09 -05:00

10 lines
286 B
Nix

{ config, lib, ... }:
{
options.system.extlinux.enable = lib.mkEnableOption "Enable extlinux";
config.boot.loader = lib.mkIf config.system.extlinux.enable {
grub.enable = false;
systemd-boot.enable = lib.mkForce false;
generic-extlinux-compatible.enable = true;
};
}