nixhome/zellij.nix

15 lines
263 B
Nix

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