flake/nixos/profiles/core/packages/overlays/nautilus.nix

24 lines
725 B
Nix
Raw Normal View History

2023-12-16 07:22:27 +00:00
_final: prev: {
2023-11-09 04:21:04 +00:00
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.fetchgit {
url = "https://aur.archlinux.org/nautilus-typeahead.git";
2023-11-24 05:37:07 +00:00
rev = "26776193230b0d56f714d31d79c5e716ac413a26";
hash = "sha256-hVWZCQwHzL4j+FcgsEhuumhBkl6d8IIbcYddh08QMJM=";
2023-11-09 04:21:04 +00:00
sparseCheckout = [
"nautilus-restore-typeahead.patch"
];
}
+ "/nautilus-restore-typeahead.patch")
];
});
};
}