nixos-config/nixos/system/settings/bootloader.nix
2024-12-31 19:31:09 +01:00

13 lines
250 B
Nix

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