diff --git a/home/home.nix b/home/home.nix index efa480b..f600a03 100644 --- a/home/home.nix +++ b/home/home.nix @@ -20,6 +20,7 @@ ./modules/picom.nix ./modules/shells.nix + ./modules/zellij.nix ./modules/nvf.nix ./modules/kitty.nix ./modules/foot.nix diff --git a/home/modules/zellij.nix b/home/modules/zellij.nix new file mode 100644 index 0000000..eb13462 --- /dev/null +++ b/home/modules/zellij.nix @@ -0,0 +1,13 @@ +{ + programs.zellij = { + enable = true; + enableBashIntegration = false; + settings = { + on_force_close = "quit"; + simplified_ui = true; + pane_frames = false; + default_layout = "compact"; + show_startup_tips = false; + }; + }; +}