Commit bf33582

HPCesia <me@hpcesia.com>
2025-08-02 08:07:28
feat(app): add and remove some media apps
1 parent 0a2241c
Changed files (1)
home
linux
home/linux/gui/media.nix
@@ -1,16 +1,6 @@
-{pkgs, ...}: let
-  audacious = (pkgs.audacious.override {withPlugins = true;}).overrideAttrs (
-    previousAttrs: {
-      qtWrapperArgs =
-        (previousAttrs.qtWrapperArgs or [])
-        ++ [
-          "--set GTK_IM_MODULE wayland"
-          "--set QT_IM_MODULE fcitx"
-        ];
-    }
-  );
-in {
+{pkgs, ...}: {
   home.packages = with pkgs; [
-    audacious
+    quodlibet-full
+    musikcube
   ];
 }