feat(homeModules): add zellij multiplexer
This commit is contained in:
parent
aa00ad1113
commit
812b512660
5 changed files with 27 additions and 13 deletions
17
modules/home/cli/multiplexer/default.nix
Normal file
17
modules/home/cli/multiplexer/default.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
config = lib.mkIf (config.cli.multiplexer == "zellij") {
|
||||
home.sessionVariables.multiplexer = "zellij -c";
|
||||
programs.zellij = {
|
||||
enable = true;
|
||||
attachExistingSession = true;
|
||||
exitShellOnExit = true;
|
||||
settings = {
|
||||
default_layout = "compact";
|
||||
pane_frames = false;
|
||||
show_startup_tips = false;
|
||||
show_release_notes = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue