1
0
Fork 0
mirror of https://github.com/archtechx/todo-system.git synced 2025-12-12 09:04:03 +00:00

readme: nix instructions

This commit is contained in:
Samuel Štancl 2025-09-13 23:49:00 +02:00
parent 32a57ab5fb
commit fa9c36bf6d

View file

@ -195,6 +195,14 @@ There are no downloadable builds at the moment. To compile the tool manually:
2. `cargo install --git https://github.com/archtechx/todo-system.git`
3. The tool will be added to your `$PATH` automatically as `todos`
If you use Nix (with flakes), you can use this repo as an input. The tool is
exported as the default package. You can try it out using:
```
nix run github:archtechx/todo-system -- --help
# or create a temporary shell with `todos` in PATH:
nix shell github:archtechx/todo-system
```
I personally also like creating an alias that does `todos | less`:
```sh
alias t="todos | less"