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
./onepassword-connect
./podman
./prowlarr
./qbittorrent
./reboot-required-check.nix
./sabnzbd

View file

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