1
0
Fork 0

move tf init out of python over read-only nix env

This commit is contained in:
kiara Grouwstra 2025-03-26 10:17:19 +01:00
parent 2365d9a044
commit f04e1d0f40
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU
2 changed files with 7 additions and 9 deletions
launch
panel/src/panel

View file

@ -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
```

View file

@ -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}",