nixos-config/homes/palo/zellij.nix
2024-06-07 22:56:52 +02:00

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";
};
};
}