2015-02-16 10:56:08 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
ec2 = {
|
|
|
|
hvm = lib.mkOption {
|
2017-04-04 13:07:15 +02:00
|
|
|
default = lib.versionAtLeast config.system.stateVersion "17.03";
|
2015-02-16 10:56:08 +01:00
|
|
|
internal = true;
|
|
|
|
description = ''
|
|
|
|
Whether the EC2 instance is a HVM instance.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|