17 lines
280 B
Nix
17 lines
280 B
Nix
{ inputs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
inputs.terranix.flakeModule
|
|
];
|
|
|
|
perSystem = {
|
|
terranix.terranixConfigurations = {
|
|
# Example:
|
|
# myconfig = {
|
|
# modules = [ ./terraform/myconfig.nix ];
|
|
# extraArgs = { }; # optional
|
|
# };
|
|
};
|
|
};
|
|
}
|