44 lines
1,001 B
Nix
44 lines
1,001 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (config.modules.other.system) username;
|
|
cfg = config.modules.system.programs.zellij;
|
|
inherit (lib) mkIf;
|
|
in {
|
|
config = mkIf cfg.enable {
|
|
home-manager.users.${username} = {
|
|
programs.zellij = {
|
|
enable = true;
|
|
enableFishIntegration = true;
|
|
on_force_close = "quit";
|
|
layout_dir = "${./layouts}";
|
|
settings = {
|
|
pane_frames = false;
|
|
default_layout = "compact";
|
|
ui = {
|
|
pane_frames = {
|
|
hide_session_name = true;
|
|
rounded.corners = true;
|
|
};
|
|
};
|
|
|
|
plugins = {
|
|
tab-bar.path = "tab-bar";
|
|
status-bar.path = "status-bar";
|
|
strider.path = "strider";
|
|
compact-bar.path = "compact-bar";
|
|
};
|
|
|
|
keybinds = {
|
|
unbind = "Ctrl n";
|
|
# resize = {
|
|
# bind = "Ctrl n";
|
|
# };
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|