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

  config = {};
}