1
0
Fork 0
nixos-config/overlays/gnome-shell/default.nix
2021-07-31 12:36:36 +02:00

18 lines
390 B
Nix

self: super: {
gnome = super.gnome.overrideScope' (
selfg: superg: {
gnome-shell = superg.gnome-shell.overrideAttrs (
old: {
patches = (old.patches or [ ]) ++ [
(
self.substituteAll {
src = ./gnome-shell_3.38.3-3ubuntu1_3.38.3-3ubuntu2.patch;
}
)
];
}
);
}
);
}