chore: disable check for updates in wezterm

Signed-off-by: Chinmay D. Pai <chinmaydpai@gmail.com>
This commit is contained in:
Chinmay D. Pai 2024-09-23 11:43:29 +05:30
parent 3e7c636902
commit ff91127e85
Signed by: thunderbottom
GPG Key ID: 75507BE256F40CED

View File

@ -4,8 +4,7 @@
lib, lib,
pkgs, pkgs,
... ...
}: }: {
{
options.snowflake.desktop.wezterm.enable = lib.mkEnableOption "Enable wezterm home configuration"; options.snowflake.desktop.wezterm.enable = lib.mkEnableOption "Enable wezterm home configuration";
config = lib.mkIf config.snowflake.desktop.wezterm.enable { config = lib.mkIf config.snowflake.desktop.wezterm.enable {
@ -37,6 +36,8 @@
color_scheme = "ayu", color_scheme = "ayu",
use_fancy_tab_bar = false, use_fancy_tab_bar = false,
window_decorations = "NONE", window_decorations = "NONE",
check_for_updates = false,
} }
''; '';
}; };