got overlays working, patches next

This commit is contained in:
2024-04-19 17:42:37 -06:00
parent 71c838a95a
commit f1a1656155
6 changed files with 15 additions and 843 deletions

14
overlays/gnome.nix Normal file
View File

@@ -0,0 +1,14 @@
final: prev:
{
gnome = prev.gnome.overrideScope' (gnomeFinal: gnomePrev: {
mutter = gnomePrev.mutter.overrideAttrs (old: {
src = prev.pkgs.fetchgit {
url = "https://gitlab.gnome.org/vanvugt/mutter.git";
# GNOME 45: triple-buffering-v4-45
rev = "0b896518b2028d9c4d6ea44806d093fd33793689";
sha256 = "sha256-mzNy5GPlB2qkI2KEAErJQzO//uo8yO0kPQUwvGDwR4w=";
};
});
});
}