nixdots/modules/home-manager/cli/zellij.nix
2026-05-08 23:16:31 +03:00

11 lines
218 B
Nix

{pkgs, ...}: {
programs.zellij = {
enable = true;
enableBashIntegration = true; # Or zsh
settings = {
theme = "rose-pine";
pane_frames = false;
default_layout = "compact";
};
};
}