feat(nzbget): install unrar to enable nzbget to extract rar arhcives

This commit is contained in:
wi11-holdsworth 2026-01-12 17:17:41 +11:00
parent 8683f1838b
commit b3eaee27c9

View file

@ -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 ];
}