about summary refs log tree commit diff
path: root/nixos/modules/ec2.nix
blob: 45f3cd80ac99e3ab909cc59b4096a92d7025ff51 (plain)
1
2
3
4
5
6
7
8
9
{ modulesPath, config, lib, ... }:

{
  # AWS EC2-specific tweaks
  imports = [
    "${modulesPath}/virtualisation/amazon-image.nix"
  ];
  ec2.hvm = true;
}