* Tofu/terranix I use terranix to manage some configurations with terraform/tofu. I usually start by cleaning the working directory: #+begin_src shell rm -rf .terraform* #+end_src Then we can =init=, =plan=, and =build=: #+begin_src shell nix run .#tf -- init nix run .#tf -- plan nix run .#tf -- build #+end_src