diff --git a/flake.lock b/flake.lock index fae83b0..21bdf72 100644 --- a/flake.lock +++ b/flake.lock @@ -786,6 +786,22 @@ "type": "github" } }, + "nixpkgs-prowlarr": { + "locked": { + "lastModified": 1736414454, + "narHash": "sha256-nhzwiWZeUdCqx4bYfBwtJcwBvWhRt1f1vTJGb3fMnrY=", + "owner": "r-ryantm", + "repo": "nixpkgs", + "rev": "b70e60ed75d38ddaab1fabdd1bb99a8d8ff55a63", + "type": "github" + }, + "original": { + "owner": "r-ryantm", + "ref": "auto-update/prowlarr", + "repo": "nixpkgs", + "type": "github" + } + }, "nixpkgs-stable": { "locked": { "lastModified": 1720386169, @@ -952,6 +968,7 @@ "nixng": "nixng", "nixpkgs": "nixpkgs_3", "nixpkgs-master": "nixpkgs-master", + "nixpkgs-prowlarr": "nixpkgs-prowlarr", "servers": "servers", "treefmt-nix": "treefmt-nix_4" } diff --git a/flake.nix b/flake.nix index 0a2c12d..8fdfcb5 100644 --- a/flake.nix +++ b/flake.nix @@ -7,6 +7,7 @@ flake-utils.url = "github:numtide/flake-utils"; treefmt-nix.url = "github:numtide/treefmt-nix"; blog.url = "git+https://git.kun.is/pim/blog"; + nixpkgs-prowlarr.url = "github:r-ryantm/nixpkgs?ref=auto-update/prowlarr"; git-hooks = { url = "github:cachix/git-hooks.nix"; diff --git a/nixng-configurations/default.nix b/nixng-configurations/default.nix index 5fd8979..e0f119d 100644 --- a/nixng-configurations/default.nix +++ b/nixng-configurations/default.nix @@ -6,6 +6,7 @@ blog, nixpkgs, nixpkgs-master, + nixpkgs-prowlarr, ... }: flake-utils.lib.eachDefaultSystem (system: let @@ -47,7 +48,9 @@ in { nixpkgs.overlays = [ (_final: _prev: { # From master branch - inherit (nixpkgs-master.legacyPackages.${system}) prowlarr jellyseerr radicale bazarr; + inherit (nixpkgs-master.legacyPackages.${system}) jellyseerr radicale bazarr; + # Other branches + inherit (nixpkgs-prowlarr.legacyPackages.${system}) prowlarr; }) ]; }