flake/modules/nixos/hardware/boot.nix
2025-10-21 22:04:25 +03:00

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;
};
}