snowflake/home/zellij/default.nix
notohh 6efe8282ce
Some checks are pending
flake check / check (push) Waiting to run
fmt check / check (push) Waiting to run
zellij: fix theme
2024-01-22 08:08:12 -05:00

17 lines
293 B
Nix

{...}: {
imports = [
./layouts.nix
];
programs.zellij = {
enable = true;
settings = {
on_force_close = "quit";
simplified_ui = false;
default_layout = "default";
ui.pane_frames.rounded_corners = true;
theme = "tokyo-night-storm";
};
};
}