docs: promote Nixpkgs as an official installation method (#2775)

Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr>
This commit is contained in:
Ludovic Ortega
2026-03-31 14:04:14 +02:00
committed by GitHub
parent 735ec47b1e
commit 05ad60c21a
8 changed files with 108 additions and 40 deletions

View File

@@ -34,9 +34,9 @@ export const NixpkgVersion = () => {
const fetchVersion = async () => {
try {
const unstableUrl =
'https://raw.githubusercontent.com/NixOS/nixpkgs/refs/heads/nixos-unstable/pkgs/by-name/je/jellyseerr/package.nix';
'https://raw.githubusercontent.com/NixOS/nixpkgs/refs/heads/nixos-unstable/pkgs/by-name/se/seerr/package.nix';
const stableUrl =
'https://raw.githubusercontent.com/NixOS/nixpkgs/refs/heads/nixos-25.05/pkgs/by-name/je/jellyseerr/package.nix';
'https://raw.githubusercontent.com/NixOS/nixpkgs/refs/heads/nixos-26.05/pkgs/by-name/se/seerr/package.nix';
const [unstableResponse, stableResponse] = await Promise.all([
fetch(unstableUrl),