From b3eaee27c91bdb1daf71a0599f969f1cc2e79a81 Mon Sep 17 00:00:00 2001 From: wi11-holdsworth <83637728+wi11-holdsworth@users.noreply.github.com> Date: Mon, 12 Jan 2026 17:17:41 +1100 Subject: [PATCH] feat(nzbget): install unrar to enable nzbget to extract rar arhcives --- modules/nixos/features/nzbget.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/nixos/features/nzbget.nix b/modules/nixos/features/nzbget.nix index 6d2199f..ff6f7d5 100644 --- a/modules/nixos/features/nzbget.nix +++ b/modules/nixos/features/nzbget.nix @@ -1,3 +1,7 @@ +{ + pkgs, + ... +}: let port = 5018; in @@ -18,4 +22,6 @@ in locations."/".proxyPass = "http://localhost:${toString port}"; }; }; + + environment.systemPackages = with pkgs; [ unrar ]; }