Fixes duplicate module declaration error by importing terranix flakeModule once at the top level instead of in each config file. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
17 lines
330 B
Nix
17 lines
330 B
Nix
# OCI Terminus configuration placeholder
|
|
{ ... }:
|
|
|
|
{
|
|
perSystem =
|
|
{ pkgs, ... }:
|
|
{
|
|
terranix.terranixConfigurations.oci-terminus = {
|
|
terraformWrapper.package = pkgs.opentofu;
|
|
modules = [
|
|
({ config, ... }: {
|
|
# Terraform config goes here
|
|
})
|
|
];
|
|
};
|
|
};
|
|
}
|