From 946e185c99e7225d2364638a8cef5b3d17d85ed2 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Wed, 31 Jan 2024 00:23:11 +0100 Subject: [PATCH] prowlarr: use unstable pkg --- hosts/architect/prowlarr.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/hosts/architect/prowlarr.nix b/hosts/architect/prowlarr.nix index 64d2478..ff35e05 100644 --- a/hosts/architect/prowlarr.nix +++ b/hosts/architect/prowlarr.nix @@ -1,10 +1,13 @@ -{ config, ... }: +{ config, pkgs, ... }: let domain = "htpro.giugl.io"; in { - services.prowlarr.enable = true; + services.prowlarr = { + enable = true; + package = pkgs.unstablePkgs.prowlarr; + }; architect.vhost.${domain} = with config.architect.networks; { dnsInterfaces = [ "tailscale" ];