nixos-configuration/modules/bootloader/systemd-boot.nix
2024-07-03 01:54:17 +02:00

17 lines
302 B
Nix

{ config, lib, ... }:
lib.mkIf (config.jalr.bootloader == "systemd-boot") {
boot = {
loader = {
systemd-boot = {
enable = true;
configurationLimit = 20;
};
efi = {
efiSysMountPoint = "/boot";
canTouchEfiVariables = true;
};
};
};
}