loutreos: only install stable packages

This commit is contained in:
nyanloutre 2025-03-05 09:48:36 +01:00
parent d8f1fe6a44
commit faae72437c
2 changed files with 5 additions and 32 deletions

View File

@ -57,15 +57,6 @@
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = { specialArgs = {
inputs = inputs; inputs = inputs;
pkgs-unstable = import nixpkgs-unstable {
inherit system;
config.permittedInsecurePackages = [
"aspnetcore-runtime-6.0.36"
"aspnetcore-runtime-wrapped-6.0.36"
"dotnet-sdk-6.0.428"
"dotnet-sdk-wrapped-6.0.428"
];
};
pkgs-4a3fc4cf7 = import nixpkgs-4a3fc4cf7 { pkgs-4a3fc4cf7 = import nixpkgs-4a3fc4cf7 {
inherit system; inherit system;
}; };

View File

@ -1,4 +1,4 @@
{ config, lib, pkgs, pkgs-unstable, pkgs-4a3fc4cf7, ... }: { config, lib, pkgs, pkgs-4a3fc4cf7, ... }:
{ {
services = { services = {
@ -18,28 +18,10 @@
}; };
}; };
radarr = { radarr.enable = true;
enable = true; sonarr.enable = true;
package = pkgs-unstable.radarr; prowlarr.enable = true;
}; jellyfin.enable = true;
sonarr = {
enable = true;
package = pkgs-unstable.sonarr;
};
flaresolverr = {
enable = false;
package = pkgs-unstable.flaresolverr;
};
prowlarr = {
enable = true;
package = pkgs-unstable.prowlarr;
};
jellyfin = {
enable = true;
package = pkgs-unstable.jellyfin;
};
slimserver.enable = true; slimserver.enable = true;
}; };