nandi/frqpublic Fork 0
9afdfa4
Commits
Clone
git clone https://git.rickub.com/nandi/frq.git
git clone ssh://git@rickub.com/nandi/frq.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

Take just from the dev shell, so the host needs no copy of it

The shell already carries jolt, babashka and nixGL; the runner that calls
them was the one thing still expected on the host. `nix develop` and then
`just run` is now the whole of what a machine with nix needs.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
nandi committed 2026-09-02T18:05:56-07:00 Browse files
9afdfa4 parent: 0f00136
modified flake.nix +4 -2
@@ -374,8 +374,10 @@
374374 # too. nixGL for the same reason the launcher reaches for it — see
375375 # frqScript. babashka because scripts/bb prefers one on PATH, and
376376 # inside here that should be this one rather than a second copy
377- # built through `.#bb`.
378- packages = [ jolt pkgs.babashka (nixGLFor pkgs) ];
377+ # built through `.#bb`. just so the recipe runner comes from here
378+ # too rather than the host — `nix develop` and then `just run` is
379+ # the whole of what a machine with nix needs.
380+ packages = [ jolt pkgs.babashka pkgs.just (nixGLFor pkgs) ];
379381
380382 # Read by scripts/run.bb rather than baked into a wrapper: the frq
381383 # source `just run` runs is the working tree, so the launcher has
@@ -374,8 +374,10 @@
374 # too. nixGL for the same reason the launcher reaches for it — see374 # too. nixGL for the same reason the launcher reaches for it — see
375 # frqScript. babashka because scripts/bb prefers one on PATH, and375 # frqScript. babashka because scripts/bb prefers one on PATH, and
376 # inside here that should be this one rather than a second copy376 # inside here that should be this one rather than a second copy
377- # built through `.#bb`.377+ # built through `.#bb`. just so the recipe runner comes from here
378- packages = [ jolt pkgs.babashka (nixGLFor pkgs) ];378+ # too rather than the host — `nix develop` and then `just run` is
379+ # the whole of what a machine with nix needs.
380+ packages = [ jolt pkgs.babashka pkgs.just (nixGLFor pkgs) ];
379 381
380 # Read by scripts/run.bb rather than baked into a wrapper: the frq382 # Read by scripts/run.bb rather than baked into a wrapper: the frq
381 # source `just run` runs is the working tree, so the launcher has383 # source `just run` runs is the working tree, so the launcher has