Files
nixos-config/modules/home/zellij.nix
Christoph Schmatzler 55d816ec07 up
Signed-off-by: Christoph Schmatzler <christoph@schmatzler.com>
2025-08-16 19:31:43 +00:00

19 lines
358 B
Nix

{
lib,
pkgs,
...
}: {
programs.zellij = {
enable = true;
enableFishIntegration = lib.mkDefault false;
settings = {
theme = "catppuccin-latte";
default_layout = "compact";
default_shell = "${pkgs.fish}/bin/fish";
pane_frames = false;
show_startup_tips = false;
show_release_notes = false;
};
};
}