summary refs log tree commit diff
path: root/nixos/modules/virtualisation/amazon-options.nix
blob: 15de8638bbab5f52fda808edf1c075402f09688a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config, lib, ... }:
{
  options = {
    ec2 = {
      hvm = lib.mkOption {
        default = lib.versionAtLeast config.system.stateVersion "17.03";
        internal = true;
        description = ''
          Whether the EC2 instance is a HVM instance.
        '';
      };
    };
  };
}