summaryrefslogtreecommitdiff
path: root/ext/terranix/default.nix
blob: 1af9002d0fdf459b8dda7de2009c2f2bc67358fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{ inputs, ... }:
{
  perSystem =
    {
      lib,
      pkgs,
      self',
      system,
      ...
    }:
    let
      inherit (self'.packages) opentofu;

      terranix = inputs.terranix.lib.terranixConfiguration {
        inherit system;
        modules = [
          ./cloudflare
          ./tailscale
          ./cloud.nix
          ./vars.nix
          ./versions.nix
        ];
      };
    in
    {
      apps = {
        apply-tf = {
          type = "app";
          program = lib.getExe (
            pkgs.writeShellScriptBin "apply" ''
              cp --force ${terranix} config.tf.json \
                && ${lib.getExe opentofu} init \
                && ${lib.getExe opentofu} apply
            ''
          );
        };
      };

      packages.opentofu = pkgs.opentofu.withPlugins (plugins: [
        plugins.cloudflare
        plugins.tailscale
      ]);
    };
}