9e2f1f4583
Change-Id: I8470c0a2416c0c397e009affb44f8c7a852cd526 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9837 Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Autosubmit: flokli <flokli@flokli.de>
13 lines
249 B
Nix
13 lines
249 B
Nix
{ depot, pkgs, modulesPath, ... }:
|
|
|
|
{
|
|
imports = [
|
|
"${modulesPath}/virtualisation/amazon-image.nix"
|
|
../profiles/archeology.nix
|
|
];
|
|
|
|
networking.hostName = "archeology-ec2";
|
|
|
|
system.stateVersion = "23.05"; # Did you read the comment?
|
|
}
|
|
|