20 lines
370 B
Nix
20 lines
370 B
Nix
# OCI Terminus configuration placeholder
|
|
{ ... }:
|
|
|
|
{
|
|
perSystem =
|
|
{ pkgs, ... }:
|
|
{
|
|
terranix.terranixConfigurations.oci-terminus = {
|
|
terraformWrapper.package = pkgs.opentofu;
|
|
modules = [
|
|
(
|
|
{ config, ... }:
|
|
{
|
|
# Terraform config goes here
|
|
}
|
|
)
|
|
];
|
|
};
|
|
};
|
|
}
|