tui/zellij/{module.nix, zellij-good-scrolling.patch}: init

This commit is contained in:
Charlie Root 2025-04-06 11:35:25 +02:00
commit 8e956876fa
Signed by: faukah
SSH key fingerprint: SHA256:Uj2AXqvtdCA4hn5Hq0ZonhIAyUqI1q4w2sMG3Z1TH7E
2 changed files with 34 additions and 0 deletions

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