add ffmpeg to sonarr and radarr

This commit is contained in:
2025-10-22 21:50:35 -05:00
parent 32f37c7c2e
commit b7fb67f939
5 changed files with 38 additions and 25 deletions

View File

@@ -51,11 +51,12 @@
};
stable_pkgs = builtins.mapAttrs (k: v: import nixpkgs {system = v;}) systems;
unstable_pkgs = builtins.mapAttrs (k: v: import nixpkgs-unstable {system = v;}) systems;
current_system = builtins.currentSystem;
in {
nixosConfigurations = {
snowbelle = nixpkgs.lib.nixosSystem {
system = systems.x86_64;
specialArgs = {inherit inputs stable_pkgs unstable_pkgs;};
specialArgs = {inherit inputs stable_pkgs unstable_pkgs current_system;};
modules = [
./hosts/nixos/snowbelle/configuration.nix
inputs.home-manager.nixosModules.default
@@ -73,7 +74,7 @@
darwinConfigurations = {
CEN-IT-07 = nix-darwin.lib.darwinSystem {
system = systems.darwin;
specialArgs = {inherit inputs stable_pkgs unstable_pkgs nix-homebrew;};
specialArgs = {inherit inputs stable_pkgs unstable_pkgs nix-homebrew current_system;};
modules = [
./hosts/darwin/cen-it-07/configuration.nix
inputs.home-manager.darwinModules.default