The flake doesn't build because the flake.lock, the cargoHash and pnpm deps hashes are outdated.
For maintenance, it needs to run periodically after every new tag:
nix flake update
nix-update -F --url https://codeberg.org/ArkHost/HelixNotes default
nix build . # for testing
So a CI action is a good way to automate this update.
The flake doesn't build because the flake.lock, the cargoHash and pnpm deps hashes are outdated.
For maintenance, it needs to run periodically after every new tag:
```sh
nix flake update
nix-update -F --url https://codeberg.org/ArkHost/HelixNotes default
nix build . # for testing
```
So a CI action is a good way to automate this update.