callisto: pin vesktop to stable to stop constant rebuilds

This commit is contained in:
Youwen Wu 2024-08-25 04:07:29 -07:00
parent df1ecf6de4
commit efaa5c81cd
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3

View file

@ -36,7 +36,9 @@
settings.General.EnableNetworkConfiguration = true; settings.General.EnableNetworkConfiguration = true;
}; };
nixpkgs.overlays = [ nixpkgs.overlays = let
stablepkgs = inputs.stablepkgs.legacyPackages.${pkgs.system};
in [
inputs.apple-silicon.overlays.apple-silicon-overlay inputs.apple-silicon.overlays.apple-silicon-overlay
(final: prev: { (final: prev: {
hyprland = prev.hyprland.overrideAttrs (oldAttrs: { hyprland = prev.hyprland.overrideAttrs (oldAttrs: {
@ -48,6 +50,7 @@
./0001-linux-dmabuf-allow-on-split-node-systems.patch ./0001-linux-dmabuf-allow-on-split-node-systems.patch
]; ];
}); });
vesktop = stablepkgs.vesktop;
}) })
]; ];