add prowlarr overlay

This commit is contained in:
Joseph Hanson 2025-01-31 19:17:58 -06:00
parent 497d4148df
commit 96da9c78ae
2 changed files with 10 additions and 9 deletions

View file

@ -10,6 +10,7 @@
./nix-index-daily ./nix-index-daily
./onepassword-connect ./onepassword-connect
./podman ./podman
./prowlarr
./qbittorrent ./qbittorrent
./reboot-required-check.nix ./reboot-required-check.nix
./sabnzbd ./sabnzbd

View file

@ -1,12 +1,10 @@
{ inputs, ... }: {inputs, ...}: let
let
# smartmontoolsOverlay = import ./smartmontools { }; # smartmontoolsOverlay = import ./smartmontools { };
# vivaldiOverlay = self: super: { vivaldi = super.callPackage ./vivaldi { }; }; # vivaldiOverlay = self: super: { vivaldi = super.callPackage ./vivaldi { }; };
coderOverlay = self: super: { coder = super.callPackage ./coder { }; }; coderOverlay = self: super: {coder = super.callPackage ./coder {};};
modsOverlay = self: super: { mods = super.callPackage ./charm-mods { }; }; modsOverlay = self: super: {mods = super.callPackage ./charm-mods {};};
termiusOverlay = self: super: { termius = super.callPackage ./termius { }; }; termiusOverlay = self: super: {termius = super.callPackage ./termius {};};
in in {
{
# smartmontools = smartmontoolsOverlay; # smartmontools = smartmontoolsOverlay;
# vivaldi = vivaldiOverlay; # vivaldi = vivaldiOverlay;
coder = coderOverlay; coder = coderOverlay;
@ -27,14 +25,16 @@ in
// { // {
# Add talosctl to the unstable set # Add talosctl to the unstable set
talosctl = final.unstable.callPackage ./talosctl { talosctl = final.unstable.callPackage ./talosctl {
inherit (final.unstable) inherit
(final.unstable)
lib lib
buildGoModule buildGoModule
fetchFromGitHub fetchFromGitHub
installShellFiles installShellFiles
; ;
}; };
xpipe = final.unstable.callPackage ./xpipe/ptb.nix { }; xpipe = final.unstable.callPackage ./xpipe/ptb.nix {};
prowlarr = final.unstable.callPackage ./arr/prowlarr.nix {};
}; };
}; };
} }