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