nixhome/zellij.nix

15 lines
265 B
Nix

{ config, pkgs, ... }:
{
home.sessionVariables = {
ZELLIJ_AUTO_EXIT = "false";
};
programs.zellij= {
enable = true;
enableZshIntegration = false;
settings = {
copy_command = "${pkgs.xclip}/bin/xclip -selection clipboard";
};
};
}