Add notification tab switch patch to qutebrowser

This commit is contained in:
Charlotte Van Petegem 2021-07-29 19:09:30 +02:00
parent 1ab482d97f
commit b115e9f6bb
No known key found for this signature in database
GPG key ID: 019E764B7184435A
2 changed files with 15 additions and 3 deletions

View file

@ -7,6 +7,18 @@
};
config = lib.mkIf config.chvp.graphical.qutebrowser.enable {
nixpkgs.overlays = [
(self: super: {
qutebrowser = super.qutebrowser.overrideAttrs (old: {
patches = (old.patches or [ ]) ++ [
(self.fetchpatch {
url = "https://github.com/qutebrowser/qutebrowser/pull/6626.patch";
sha256 = "pBMyXGizVJfhPK8i1q38g2HFupeP/4GrR9THwYRxAmk=";
})
];
});
})
];
chvp.base.zfs.homeLinks = [
{ path = ".config/qutebrowser"; type = "data"; }
{ path = ".local/share/qutebrowser"; type = "cache"; }