move from documenting to automating configurable-impure-env

This commit is contained in:
kiara Grouwstra 2025-03-13 13:50:49 +01:00
parent 2a8ae9d320
commit 782bbc4d8e
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU
2 changed files with 13 additions and 7 deletions
panel

View file

@ -4,11 +4,6 @@ The Fediversity Panel is a web service for managing Fediversity deployments with
## Development
- In your [nix.conf](https://nix.dev/manual/nix/latest/command-ref/conf-file) (Nix) / `nix.settings` (NixOS),
to your [`experimental-features`](https://nix.dev/manual/nix/latest/command-ref/conf-file#conf-experimental-features)
add [`configurable-impure-env`](https://nix.dev/manual/nix/latest/development/experimental-features#xp-feature-configurable-impure-env).
Note that this features is only available in Nix, not in Lix.
- To obtain all tools related to this project, enter the development environment with `nix-shell`.
If you want to do that automatically on entering this directory:

View file

@ -56,8 +56,19 @@ class ConfigurationForm(LoginRequiredMixin, FormView):
}
print(f"env: {env}")
print(f"Path: {os.getcwd()}/..")
subprocess.run(["nix", "develop", "--command", "nixops4", "--show-trace",
"--verbose", "apply", "test"], cwd=os.getenv("REPO_DIR") or f"{os.getcwd()}/..", env=env)
cmd = [
"nix",
"develop",
"--extra-experimental-features",
"configurable-impure-env",
"--command",
"nixops4",
"--show-trace",
"--verbose",
"apply",
"test",
]
subprocess.run(cmd, cwd=os.getenv("REPO_DIR") or f"{os.getcwd()}/..", env=env)
return obj
# TODO(@fricklerhandwerk):