8ac5e011d6
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
21 lines
496 B
Nix
21 lines
496 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
options = {
|
|
ec2 = {
|
|
hvm = lib.mkOption {
|
|
default = lib.versionAtLeast config.system.stateVersion "17.03";
|
|
internal = true;
|
|
description = ''
|
|
Whether the EC2 instance is a HVM instance.
|
|
'';
|
|
};
|
|
efi = lib.mkOption {
|
|
default = pkgs.stdenv.hostPlatform.isAarch64;
|
|
internal = true;
|
|
description = ''
|
|
Whether the EC2 instance is using EFI.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
}
|