24 lines
668 B
Nix
24 lines
668 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
nixpkgs = {
|
||
|
overlays = [
|
||
|
(final: prev:
|
||
|
{
|
||
|
gnome = prev.gnome // {
|
||
|
# Restore Nautilus's typeahead ability
|
||
|
# .patch file from from aur/nautilus-typeahead
|
||
|
nautilus = prev.gnome.nautilus.overrideAttrs (old: {
|
||
|
patches = (old.patches or []) ++ [
|
||
|
(prev.fetchpatch {
|
||
|
url = "https://aur.archlinux.org/cgit/aur.git/plain/nautilus-restore-typeahead.patch?h=nautilus-typeahead";
|
||
|
hash = "sha256-dtMm5FRvwHF9SBibCgl/+8AlesthZtpE4DHzLbM8XSY=";
|
||
|
})
|
||
|
];
|
||
|
});
|
||
|
};
|
||
|
}
|
||
|
)
|
||
|
];
|
||
|
};
|
||
|
}
|