1
0
Fork 0
nixos-config/overlays/gnome-shell/default.nix

18 lines
390 B
Nix
Raw Normal View History

2021-07-31 10:35:36 +00:00
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;
}
)
];
}
);
}
);
}