From 49920bfe57eefd783e856d7be16c6ee018d03d76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jalil=20David=20Salam=C3=A9=20Messina?= Date: Tue, 20 May 2025 22:05:06 +0200 Subject: [PATCH] fix(zellij): disable the startup tips dialogue I don't need it and its extra friction. --- modules/hm/gui/default.nix | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/modules/hm/gui/default.nix b/modules/hm/gui/default.nix index cd4ab93..4833619 100644 --- a/modules/hm/gui/default.nix +++ b/modules/hm/gui/default.nix @@ -176,13 +176,16 @@ in zellij = { enable = cfg.terminal == "alacritty"; # alacritty has no terminal multiplexer built-in # Set default shell - settings.default_shell = - if config.programs.fish.enable then - "fish" - else if config.programs.zsh.enable then - "zsh" - else - "bash"; + settings = { + show_startup_tips = false; # disable the startup tips dialogue + default_shell = + if config.programs.fish.enable then + "fish" + else if config.programs.zsh.enable then + "zsh" + else + "bash"; + }; }; # PDF reader zathura.enable = true; -- 2.49.0