17 lines
308 B
Nix
17 lines
308 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
lib.mkIf (config.jalr.bootloader == "systemd-boot") {
|
|
boot = {
|
|
loader = {
|
|
systemd-boot = {
|
|
enable = true;
|
|
configurationLimit = 20;
|
|
};
|
|
efi = {
|
|
efiSysMountPoint = "/boot";
|
|
canTouchEfiVariables = true;
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|