11 lines
217 B
Nix
11 lines
217 B
Nix
{pkgs, ...}: {
|
|
programs.zellij = {
|
|
enable = true;
|
|
enableBashIntegration = true; # Or zsh
|
|
settings = {
|
|
theme = "rose-pine";
|
|
pane_frames = false;
|
|
show_startup_tips = false;
|
|
};
|
|
};
|
|
}
|