From efaa5c81cd884d76825cae447387a913b1fbd442 Mon Sep 17 00:00:00 2001 From: Youwen Wu Date: Sun, 25 Aug 2024 04:07:29 -0700 Subject: [PATCH] callisto: pin vesktop to stable to stop constant rebuilds --- hosts/callisto/configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/callisto/configuration.nix b/hosts/callisto/configuration.nix index 643332f..71baec7 100755 --- a/hosts/callisto/configuration.nix +++ b/hosts/callisto/configuration.nix @@ -36,7 +36,9 @@ settings.General.EnableNetworkConfiguration = true; }; - nixpkgs.overlays = [ + nixpkgs.overlays = let + stablepkgs = inputs.stablepkgs.legacyPackages.${pkgs.system}; + in [ inputs.apple-silicon.overlays.apple-silicon-overlay (final: prev: { hyprland = prev.hyprland.overrideAttrs (oldAttrs: { @@ -48,6 +50,7 @@ ./0001-linux-dmabuf-allow-on-split-node-systems.patch ]; }); + vesktop = stablepkgs.vesktop; }) ];