dotfiles/nix/home-manager/modules/packages/zellij.nix

11 lines
276 B
Nix

{ ... }:
{
programs.zellij = {
enable = true;
enableZshIntegration = false; # automatically sets up a session - I don't want this, I want manual control of my sessions
};
xdg.configFile = {
"zellij/config.kdl".source = ../../../../zellij/config.kdl;
};
}