summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorSeth Flynn <[email protected]>2025-01-31 08:14:23 -0500
committerSeth Flynn <[email protected]>2025-02-03 05:34:09 -0500
commit082ef6167ea188de4a0439fe63baaca41b19b45b (patch)
treec51217b3b47601ee95cacfeaeaef426fb7128a6d /flake.nix
parentd5ad065e31f4d84824463829eeabfb55dbe9ece4 (diff)
terraform: switch to plain hcl
• Removed input 'terranix' • Removed input 'terranix/bats-assert' • Removed input 'terranix/bats-support' • Removed input 'terranix/flake-parts' • Removed input 'terranix/nixpkgs' • Removed input 'terranix/systems' • Removed input 'terranix/terranix-examples'
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/flake.nix b/flake.nix
index f46f7d1..479febc 100644
--- a/flake.nix
+++ b/flake.nix
@@ -9,10 +9,6 @@
outputs =
inputs:
- let
- flakeModules = import ./modules/flake;
- in
-
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
systems = [
"x86_64-linux"
@@ -22,7 +18,6 @@
];
imports = [
- flakeModules.terranix
inputs.getchpkgs.flakeModules.checks
inputs.getchpkgs.flakeModules.configurations
@@ -31,11 +26,8 @@
./modules
./openwrt
./systems
- ./terranix
./users
];
-
- flake = { inherit flakeModules; };
};
inputs = {
@@ -141,17 +133,5 @@
url = "github:getchoo/teawiebot";
inputs.nixpkgs.follows = "nixpkgs";
};
-
- terranix = {
- url = "github:terranix/terranix";
- inputs = {
- nixpkgs.follows = "nixpkgs";
- flake-parts.follows = "flake-parts";
- systems.follows = "agenix/systems";
- terranix-examples.follows = "";
- bats-support.follows = "";
- bats-assert.follows = "";
- };
- };
};
}