nixos-config/nixos/system/settings/bootloader.nix
2025-01-01 12:14:49 +01:00

13 lines
260 B
Nix

{
lib,
config,
}: {
options = {
sys.bootloader.systemd-boot.enable = lib.mkEnableOption "Enable systemd-boot as the bootloader";
};
config = lib.mkIf config.sys.bootloader.systemd-boot.enable {
boot.loader.systemd-boot.enable = true;
};
}