17 lines
346 B
Nix
Raw Normal View History

2024-04-14 22:45:21 +02:00
{ lib, config, ... }:
let isCI = builtins.elem config.syscfg.hostname [ "ci" "sandbox" ];
in {
config = lib.mkIf (!isCI) {
boot.loader = {
systemd-boot = {
enable = true;
configurationLimit = 8;
};
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot/efi";
};
2023-11-04 02:28:27 +01:00
};
};
}