Auto-commit: 2026-01-06 03:13:39

This commit is contained in:
2026-01-06 03:13:39 +00:00
parent 02277ba080
commit 91a1c2f265

View File

@@ -6,8 +6,13 @@ let
unstablePkgs = unstablePkgs =
inputs.nixpkgs-unstable.legacyPackages.${pkgs.stdenv.hostPlatform.system}; inputs.nixpkgs-unstable.legacyPackages.${pkgs.stdenv.hostPlatform.system};
vesktopBase =
unstablePkgs.vesktop.override {
withMiddleClickScroll = true;
};
vesktopPatched = vesktopPatched =
unstablePkgs.vesktop.overrideAttrs (old: { vesktopBase.overrideAttrs (old: {
postPatch = postPatch =
(old.postPatch or "") (old.postPatch or "")
+ '' + ''
@@ -17,9 +22,7 @@ let
--replace '"fuses": true' '"fuses": false' --replace '"fuses": true' '"fuses": false'
fi fi
''; '';
}).override { });
withMiddleClickScroll = true;
};
in in
{ {
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {