flake/modules/nixos/hardware/boot.nix
2025-10-21 21:02:44 +03:00

8 lines
No EOL
194 B
Nix

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