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

10 lines
274 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;
};
}