forked from Fediversity/Fediversity
move tf init out of python over read-only nix env
This commit is contained in:
parent
2365d9a044
commit
f04e1d0f40
2 changed files with 7 additions and 9 deletions
|
@ -7,3 +7,10 @@
|
|||
```sh
|
||||
echo "{\"nixos-anywhere\": $(nix-instantiate --eval --json -E '(import ../npins).nixos-anywhere.outPath')}" > .auto.tfvars.json
|
||||
```
|
||||
|
||||
### local development
|
||||
|
||||
```sh
|
||||
$ nix-shell
|
||||
$ tofu init
|
||||
```
|
||||
|
|
|
@ -141,15 +141,6 @@ class DeploymentStatus(ConfigurationForm):
|
|||
}
|
||||
cwd = f"{settings.repo_dir}/launch"
|
||||
# FIXME: move init to packaging phase
|
||||
cmd = [
|
||||
"tofu",
|
||||
# f"-chdir={cwd}",
|
||||
"init",
|
||||
"-get=false",
|
||||
"-input=false",
|
||||
# "-plugin-dir=...",
|
||||
]
|
||||
subprocess.run(cmd, cwd=cwd, env=env)
|
||||
cmd = [
|
||||
"tofu",
|
||||
# f"-chdir={cwd}",
|
||||
|
|
Loading…
Add table
Reference in a new issue