{ lib, config, ... }: let inherit (lib) mkEnableOption mkIf; cfg = config.horseman.boot.loader.systemd; in { options = { horseman.boot.loader.systemd = { enable = mkEnableOption "Sets systemd as the bootloader"; }; }; config = mkIf cfg.enable { boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.configurationLimit = 100; }; }