service/sonarr: allow insecure dotnet-6

This commit is contained in:
Felix Buehler 2025-01-21 00:10:39 +01:00
parent bb4e23bca1
commit 0314eeabd6

View file

@ -18,6 +18,12 @@ in
};
config = lib.mkIf cfg.enable {
# TODO: remove when sonarr is updated to 5.x
nixpkgs.config.permittedInsecurePackages = [
"dotnet-sdk-6.0.428"
"aspnetcore-runtime-6.0.36"
];
services = {
sonarr = {
enable = true;