move insecure packages from overlays to the service that needs it

This commit is contained in:
Chris Kruining 2025-07-23 10:05:59 +02:00
parent 4509427389
commit e293e87124
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
2 changed files with 6 additions and 4 deletions

View file

@ -59,10 +59,6 @@
import pkgs {
inherit system;
config.allowUnfree = true;
config.permittedInsecurePackages = [
"dotnet-sdk-6.0.428"
"aspnetcore-runtime-6.0.36"
];
overlays = extraOverlays ++ (lib.attrValues self.overlays);
};
pkgs = mkPkgs nixpkgs [self.overlays.default nix-minecraft.overlay flux.overlays.default];

View file

@ -34,6 +34,12 @@ in
yt-dlp
];
# need to permit these outdated packages until servarr finally upgrades at some point...
permittedInsecurePackages = [
"dotnet-sdk-6.0.428"
"aspnetcore-runtime-6.0.36"
];
users = {
users.${user} = {
isSystemUser = true;