nandi/frqpublic Fork 0
da8477224f51f442c6cbe81414085e3da75366c8
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.

CLAUDE.md · 20 lines · 761 Bmarkdown Blame HistoryRaw
Read the clock in the reader's zone when /etc/localtime is a file bffe879 nandi 18d ago1# Working in this repo
2
3## Nix
4
5`nix` is not installed on the host. It lives in the Arch distrobox, so run every
6nix command through that:
7
8```bash
9distrobox enter arch -- bash -lc 'cd <this directory> && nix build .#frq'
10```
11
12The worktree path is the same inside the container as outside, so `cd "$PWD"`
13works. A remote builder (`eu.nixbuild.net`) is already configured there; the
14Android outputs want `--store ssh-ng://eu.nixbuild.net --eval-store auto`, for
15the reason nix/android.nix gives at the top.
16
17One thing that container is *not* representative of: `/etc/localtime` is a
18regular file there rather than a symlink, so anything that reads the zone out
19of its path sees nothing. That is a real deployment shape, not an artefact —
20frq.clock handles it.