mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
15 lines
295 B
Nix
15 lines
295 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.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
}
|