tui/zellij/{module.nix, zellij-good-scrolling.patch}: init
This commit is contained in:
parent
203a1ad0fb
commit
8e956876fa
2 changed files with 34 additions and 0 deletions
12
modules/programs/tui/zellij/module.nix
Normal file
12
modules/programs/tui/zellij/module.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{pkgs, ...}: let
|
||||
# I am patching zellij because of this issue:
|
||||
# https://github.com/zellij-org/zellij/pull/2548
|
||||
patched-zellij = pkgs.zellij.overrideAttrs (old: {
|
||||
patches = [./zellij-good-scrolling.patch];
|
||||
doCheck = false;
|
||||
});
|
||||
in {
|
||||
environment.systemPackages = builtins.attrValues {
|
||||
inherit patched-zellij;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue