summary refs log tree commit diff
path: root/nixos/modules/virtualisation/amazon-options.nix
blob: 349fd3adfc96cec8d3730249d67f58519b794962 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ 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.
        '';
      };
    };
  };
}