snowflake/home/programs/terminal/zellij/default.nix

16 lines
254 B
Nix
Raw Normal View History

_: {
2023-03-11 19:05:07 -05:00
imports = [
./layouts.nix
];
2023-04-23 17:45:37 -04:00
2023-03-11 09:53:02 -05:00
programs.zellij = {
enable = true;
settings = {
2023-03-11 19:05:07 -05:00
on_force_close = "quit";
simplified_ui = false;
default_layout = "default";
ui.pane_frames.rounded_corners = true;
2023-04-23 17:45:37 -04:00
};
};
2023-03-11 09:53:02 -05:00
}