Add notification tab switch patch to qutebrowser
This commit is contained in:
parent
1ab482d97f
commit
b115e9f6bb
2 changed files with 15 additions and 3 deletions
6
flake.lock
generated
6
flake.lock
generated
|
@ -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": {
|
||||
|
|
|
@ -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"; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue