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

13 lines
294 B
Nix

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