From 9414a560c040691ae7fa4e85e60221dba4d43485 Mon Sep 17 00:00:00 2001 From: kity Date: Fri, 27 Dec 2024 14:09:17 +0100 Subject: [PATCH] fix: sabnzbd needs unfree pkg --- hosts/sisyphe/configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/sisyphe/configuration.nix b/hosts/sisyphe/configuration.nix index 716f722..977b5eb 100644 --- a/hosts/sisyphe/configuration.nix +++ b/hosts/sisyphe/configuration.nix @@ -142,6 +142,11 @@ in "dotnet-sdk-wrapped-6.0.428" ]; + # seems like sabnzbd needs some unfree pkgs... + nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ + "unrar" + ]; + # This option defines the first version of NixOS you have installed on this particular machine, # and is used to maintain compatibility with application data (e.g. databases) created on older NixOS versions.