nixos-config/home/shell/zellij.nix

20 lines
496 B
Nix
Raw Normal View History

2024-04-30 23:06:36 +02:00
{ pkgs, ... }:
{
programs.zellij.enable = true;
programs.zellij.package = pkgs.unstable.zellij;
programs.zellij.enableZshIntegration = true;
programs.zellij.settings = {
default_layout = "compact"; # or default
default_mode = "locked";
ui.pane_frames = { hide_session_name = true; };
plugins = {
tab-bar.path = "tab-bar";
status-bar.path = "status-bar";
strider.path = "strider";
};
};
home.sessionVariables = { ZELLIJ_AUTO_EXIT = "true"; };
2024-04-30 23:06:36 +02:00
}