13 lines
212 B
Nix
13 lines
212 B
Nix
{ pkgs, ... }:
|
|
with pkgs;
|
|
{
|
|
programs.zellij = {
|
|
enable = true;
|
|
# zsh will automatically start in zelllij
|
|
#enableZshIntegration = true;
|
|
settings = {
|
|
on_force_close = "quit";
|
|
};
|
|
};
|
|
|
|
}
|