mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
17 lines
374 B
Nix
17 lines
374 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
|
|
{
|
|
options.hardware.facter.detected.uefi.supported = lib.mkEnableOption "the facter uefi module" // {
|
|
default = config.hardware.facter.report.uefi.supported or false;
|
|
defaultText = "hardware dependent";
|
|
};
|
|
|
|
config.boot.loader.grub.efiSupport = lib.mkIf config.hardware.facter.detected.uefi.supported (
|
|
lib.mkDefault true
|
|
);
|
|
}
|