https://github.com/0xb10c/nix
A collection of Nix packages and modules for software I'm using.
https://github.com/0xb10c/nix
Last synced: 14 days ago
JSON representation
A collection of Nix packages and modules for software I'm using.
- Host: GitHub
- URL: https://github.com/0xb10c/nix
- Owner: 0xB10C
- License: mit
- Created: 2023-01-19T16:24:30.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-05-06T15:35:21.000Z (15 days ago)
- Last Synced: 2025-05-06T16:50:10.674Z (15 days ago)
- Language: Nix
- Homepage:
- Size: 261 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nix - a collection of nix packages and modules
A collection of Nix modules and packages for software I've written.
[](https://b10c-nixpkgs.cachix.org)
## Updating with nix-update
The [`nix-update`] tool can be used to update the version (usually commit) of the
packages. Run the following command to update, for example, miningpool-observer.```
$ nix-update miningpool-observer --flake --version=skip
```[`nix-update`]: https://github.com/Mic92/nix-update
## Integration tests
The integration tests can be run with `nix flake check`.
A single test, for example for `miningpool-observer`, can be run with
`nix build .#checks.x86_64-linux.miningpool-observer` on `x86_64-linux`.
Passing `--print-build-logs` helps debugging on failures.