Fediversity/deployment/run/tf-single-host/tf.nix
Kiara Grouwstra 506cf8f790
reusable TF deployment
note that, other than being easier to call, this maintains the TF
deployment's status of remaining a glorified wrapper of the SSH
deployment.
2025-09-03 14:53:53 +02:00

11 lines
140 B
Nix

# FIXME: use overlays so this gets imported just once?
{
pkgs,
...
}:
let
tf = pkgs.opentofu;
in
tf.withPlugins (p: [
p.external
])