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

6
flake.lock generated
View file

@ -77,11 +77,11 @@
]
},
"locked": {
"lastModified": 1627501942,
"narHash": "sha256-rG2PUTgzmXvf/fSDCWKhlRwZjZs1/0TySC5eYHVJrmg=",
"lastModified": 1627567481,
"narHash": "sha256-TEb7VEDruimeDe0h8PKpTGbXrFhgvPx3gqu3yjNJHyQ=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "2272fc312d5dc477e70816d94e550d08729b307b",
"rev": "5f6364fc28065d6b26423512e14207ce0bffb27a",
"type": "github"
},
"original": {

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"; }