summaryrefslogtreecommitdiff
path: root/terranix/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'terranix/default.nix')
-rw-r--r--terranix/default.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/terranix/default.nix b/terranix/default.nix
deleted file mode 100644
index b27e23d..0000000
--- a/terranix/default.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{inputs, ...}: {
- perSystem = {pkgs, ...}: {
- terranix = {
- builder = inputs.terranix.lib.terranixConfiguration;
-
- package = pkgs.opentofu.withPlugins (plugins: [
- plugins.cloudflare
- plugins.tailscale
- ]);
-
- modules = [
- ./cloudflare
- ./tailscale
- ./cloud.nix
- ./vars.nix
- ./versions.nix
- ];
- };
- };
-}