Ryan Yin
2025-09-01 14:28:06 +08:00
parent 8d7b622430
commit a1d51ffe0c
5 changed files with 27 additions and 5 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
{
pkgs,
pkgs-patched,
nixpak,
...
}:
@@ -21,7 +22,7 @@ in
nixpkgs.overlays = [
(_: super: {
nixpaks = {
qq = wrapper super ./qq.nix;
qq = wrapper pkgs-patched ./qq.nix;
qq-desktop-item = super.callPackage ./qq-desktop-item.nix { };
wechat = wrapper super ./wechat.nix;
+1 -4
View File
@@ -14,10 +14,7 @@ mkNixPak {
{ sloth, ... }:
{
app = {
package = pkgs.qq.override {
# fix fcitx5 input method
commandLineArgs = lib.concatStringsSep " " [ "--enable-wayland-ime" ];
};
package = pkgs.qq;
binPath = "bin/qq";
};
flatpak.appId = "com.tencent.qq";