Add `./nix/pikaci` to the first Rust source filter list
Intent: Ensure the first source-filtering block in `flake.nix` (used by one of the Nix build expressions) includes the `nix/pikaci` directory so its contents are available during the Rust build.
Affected files: flake.nix
@@ -83,6 +83,7 @@
./config
./crates
./fixtures
+ ./nix/pikaci
./pikachat-openclaw/openclaw/extensions/pikachat-openclaw
Nix flakes use explicit source-filter lists to decide which paths are copied into the build sandbox. The first list (around line 83) enumerates every directory the Rust workspace needs.
By adding ./nix/pikaci between ./fixtures and ./pikachat-openclaw/…, the pikaci nix fragments are now part of the filtered source tree. This keeps the list in alphabetical order, consistent with the surrounding entries.
./config
./crates
./fixtures
+ ./nix/pikaci
./pikachat-openclaw/openclaw/extensions/pikachat-openclaw