8 lines
197 B
Nix
8 lines
197 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
config = lib.mkIf (config.osbmModules.hardware.systemd-boot.enable) {
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
};
|
|
}
|