Heavily improve documentation and flake template

This commit is contained in:
Qubasa
2024-05-12 23:09:08 +02:00
parent 81522c96e5
commit d574faf253
7 changed files with 91 additions and 24 deletions

View File

@@ -43,6 +43,10 @@ def create_flake(directory: Path, url: str) -> dict[str, CmdOut]:
out = run(command, cwd=directory)
response["git config"] = out
command = ["nix", "flake", "update"]
out = run(command, cwd=directory)
response["flake update"] = out
return response