flake/modules/nixos/hardware/boot.nix
2025-11-07 08:49:39 +03:00

8 lines
195 B
Nix

{ config, lib, ... }:
{
config = lib.mkIf config.osbmModules.hardware.systemd-boot.enable {
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
};
}