nixpkgs/nixos/modules/virtualisation/amazon-options.nix
2017-04-04 13:49:13 +02:00

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.
'';
};
};
};
}