blob: 72f75adec1203db3d23063228ce326762f15abc0 (
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
|
{ 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 = {
tf = {
type = "app";
program = lib.getExe (
pkgs.writeShellScriptBin "tf" ''
ln -sf ${terranix} config.tf.json
exec ${lib.getExe opentofu} "$@"
''
);
};
};
packages.opentofu = pkgs.opentofu.withPlugins (plugins: [
plugins.cloudflare
plugins.tailscale
]);
};
}
|