19 lines
311 B
Nix
19 lines
311 B
Nix
{ inputs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
inputs.terranix.flakeModule
|
|
];
|
|
|
|
perSystem =
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
terranix.terranixConfigurations = {
|
|
oci-trantor = {
|
|
modules = [ ./terranix/oci/trantor.nix ];
|
|
terraformWrapper.package = pkgs.opentofu;
|
|
};
|
|
};
|
|
};
|
|
}
|