From 96da9c78ae76b17366c3d8b6f75ad94e9511e88a Mon Sep 17 00:00:00 2001 From: Joseph Hanson Date: Fri, 31 Jan 2025 19:17:58 -0600 Subject: [PATCH] add prowlarr overlay --- nixos/modules/nixos/services/default.nix | 1 + nixos/overlays/default.nix | 18 +++++++++--------- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/nixos/modules/nixos/services/default.nix b/nixos/modules/nixos/services/default.nix index eb9562f..320dc0f 100644 --- a/nixos/modules/nixos/services/default.nix +++ b/nixos/modules/nixos/services/default.nix @@ -10,6 +10,7 @@ ./nix-index-daily ./onepassword-connect ./podman + ./prowlarr ./qbittorrent ./reboot-required-check.nix ./sabnzbd diff --git a/nixos/overlays/default.nix b/nixos/overlays/default.nix index 0f6f522..d9fc3bd 100644 --- a/nixos/overlays/default.nix +++ b/nixos/overlays/default.nix @@ -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 {}; }; }; }