forked from Fediversity/Fediversity
note that, other than being easier to call, this maintains the TF deployment's status of remaining a glorified wrapper of the SSH deployment.
11 lines
140 B
Nix
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
|
|
])
|