From f49316e6003072945fc1d7e7d808890549558905 Mon Sep 17 00:00:00 2001 From: Bun Date: Thu, 29 May 2025 17:36:02 -0400 Subject: [PATCH] Stop using unstable packages where they aren't necessary --- .../home/programs/misc/avtools/default.nix | 7 ++++--- .../misc/gaming/emulators/default.nix | 21 ++++++++----------- 2 files changed, 13 insertions(+), 15 deletions(-) diff --git a/modules/home/programs/misc/avtools/default.nix b/modules/home/programs/misc/avtools/default.nix index 6f4d9356..31838e31 100644 --- a/modules/home/programs/misc/avtools/default.nix +++ b/modules/home/programs/misc/avtools/default.nix @@ -1,13 +1,14 @@ -{ config, lib, pkgs, pkgsUnstable, ... }: +{ config, lib, pkgs, ... }: { config = lib.mkIf config.home.desktop.enable { - home.packages = (with pkgs; [ + home.packages = with pkgs; [ ffmpeg ffmpegthumbnailer playerctl puddletag pulsemixer - ]) ++ (with pkgsUnstable; [ spotdl ]); + spotdl + ]; home.shellAliases.spotopus = "spotdl --m3u --format opus"; }; diff --git a/modules/home/programs/misc/gaming/emulators/default.nix b/modules/home/programs/misc/gaming/emulators/default.nix index 98f32035..53448024 100644 --- a/modules/home/programs/misc/gaming/emulators/default.nix +++ b/modules/home/programs/misc/gaming/emulators/default.nix @@ -1,14 +1,11 @@ -{ config, lib, pkgs, pkgsUnstable, ... }: +{ config, lib, pkgs, ... }: { - config = lib.mkIf config.home.gaming.enable { - home.packages = (with pkgs; [ - cemu - dolphin-emu-beta - duckstation - pcsx2 - ]) ++ (with pkgsUnstable; [ - azahar - ryubing - ]); - }; + home.packages = with pkgs; lib.mkIf config.home.gaming.enable [ + azahar + cemu + dolphin-emu-beta + duckstation + pcsx2 + ryubing + ]; }