Loading nixos/modules/hardware/facter/boot.nix 0 → 100644 +16 −0 Original line number Diff line number Diff line { 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 ); } nixos/modules/hardware/facter/default.nix +1 −0 Original line number Diff line number Diff line Loading @@ -5,6 +5,7 @@ }: { imports = [ ./boot.nix ./bluetooth.nix ./camera ./debug.nix Loading Loading
nixos/modules/hardware/facter/boot.nix 0 → 100644 +16 −0 Original line number Diff line number Diff line { 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 ); }
nixos/modules/hardware/facter/default.nix +1 −0 Original line number Diff line number Diff line Loading @@ -5,6 +5,7 @@ }: { imports = [ ./boot.nix ./bluetooth.nix ./camera ./debug.nix Loading