removed terranix
All checks were successful
/ check (push) Successful in 43s
/ deploy (push) Has been skipped

for the time being it makes sense to have terranix in its own repo
untill i design a better flake-parts variant
This commit is contained in:
Jermeiah S 2025-06-21 17:25:41 -04:00
parent 0cbe606f9a
commit 18a32b94b3
No known key found for this signature in database
3 changed files with 3 additions and 136 deletions

View file

@ -1,35 +0,0 @@
{
inputs,
...
}:
{
imports = [
inputs.terranix.flakeModule
];
perSystem =
{ pkgs, ... }:
let
package = pkgs.opentofu.withPlugins (p: [
p.external
p.local
p.null
p.tls
p.incus
]);
in
{
terranix = {
terranixConfigurations = {
tnix = {
terraformWrapper = {
inherit package;
};
workdir = "terraform";
modules = [
# ../terranix/default.nix
];
};
};
};
};
}