feat(docs): update doc references from triliumnext/notes to triliumnext/trilium

This commit is contained in:
perf3ct
2025-08-02 23:47:07 +00:00
parent 7a1ec266ad
commit 464c2bdf28
35 changed files with 88 additions and 88 deletions

View File

@@ -7,9 +7,9 @@ Installation of Nix on Mac or Linux ([download page](https://nixos.org/download/
## Run directly
Using [nix run](https://nix.dev/manual/nix/stable/command-ref/new-cli/nix3-run.html), the desktop app can be started as: `nix run github:TriliumNext/Notes/v0.95.0`
Using [nix run](https://nix.dev/manual/nix/stable/command-ref/new-cli/nix3-run.html), the desktop app can be started as: `nix run github:TriliumNext/Trilium/v0.95.0`
Running the server requires explicitly specifying the desired package: `nix run github:TriliumNext/Notes/v0.95.0#server`
Running the server requires explicitly specifying the desired package: `nix run github:TriliumNext/Trilium/v0.95.0#server`
Instead of a version (`v0.95.0` above), you can also specify a commit hash (or a branch name). This makes it easy to test development builds.
@@ -22,7 +22,7 @@ Add to your `flake.nix`:
inputs = {
nixpkgs.url = # ...;
trilium-notes = {
url = "github:TriliumNext/Notes/v0.95.0";
url = "github:TriliumNext/Trilium/v0.95.0";
inputs.nixpkgs.follows = "nixpkgs";
};
};