mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
fractional scaling in X11
This commit is contained in:
parent
b7e13bfd6d
commit
42d601e935
@ -10,6 +10,7 @@
|
||||
|
||||
# Overlays.
|
||||
# https://nixos.wiki/wiki/Overlays#In_NixOS
|
||||
# https://discourse.nixos.org/t/use-specific-pkg-version-in-overlay/32741/3
|
||||
nixpkgs.overlays = [
|
||||
(
|
||||
# Patched version of mutter 44.2.
|
||||
@ -32,7 +33,9 @@
|
||||
final: prev: {
|
||||
# Elements of pkgs.gnome must be taken from gfinal and gprev.
|
||||
gnome = prev.gnome.overrideScope' (gfinal: gprev: {
|
||||
mutter = gprev.mutter.overrideAttrs (oldAttrs: {
|
||||
mutter = gprev.mutter.overrideAttrs (oldAttrs:
|
||||
if oldAttrs.version == "44.2" then
|
||||
{
|
||||
patches = (oldAttrs.patches or []) ++ [
|
||||
(prev.fetchpatch {
|
||||
url = "https://salsa.debian.org/gnome-team/mutter/-/raw/ubuntu/44.2-3ubuntu1/debian/patches/ubuntu/x11-Add-support-for-fractional-scaling-using-Randr.patch";
|
||||
@ -40,7 +43,9 @@
|
||||
hash = "sha256-GCtz87C1NgxenYE5nbxcIIxqNhutmdngscnlK10fRyQ=";
|
||||
})
|
||||
];
|
||||
});
|
||||
}
|
||||
else throw "Mutter version mismatch. Please update patch."
|
||||
);
|
||||
});
|
||||
}
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user