nixos-config/homes/palo/zellij.nix

14 lines
212 B
Nix

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