nixhome/zellij.nix

12 lines
170 B
Nix

{ config, pkgs, ... }:
{
home.sessionVariables = {
ZELLIJ_AUTO_EXIT = "true";
};
programs.zellij= {
enable = true;
enableZshIntegration = true;
};
}