13 lines
307 B
Nix
13 lines
307 B
Nix
{
|
|
network.description = "NixOS EBS creator";
|
|
|
|
machine =
|
|
{ config, pkgs, ... }:
|
|
{ deployment.targetEnv = "ec2";
|
|
deployment.ec2.instanceType = "m1.small";
|
|
deployment.ec2.securityGroups = [ "admin" ];
|
|
environment.systemPackages = [ pkgs.parted ];
|
|
fileSystems = [];
|
|
};
|
|
}
|