1{ config, lib, ... }: 2{ 3 options = { 4 ec2 = { 5 hvm = lib.mkOption { 6 default = lib.versionAtLeast config.system.stateVersion "17.03"; 7 internal = true; 8 description = '' 9 Whether the EC2 instance is a HVM instance. 10 ''; 11 }; 12 }; 13 }; 14}