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