mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
15 lines
271 B
Nix
15 lines
271 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
{
|
||
|
options = {
|
||
|
oci = {
|
||
|
efi = lib.mkOption {
|
||
|
default = pkgs.stdenv.hostPlatform.isAarch64;
|
||
|
internal = true;
|
||
|
description = ''
|
||
|
Whether the OCI instance is using EFI.
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|