wezterm: put in place stuff to eventually set config options declarativily

This commit is contained in:
Veneficium 2024-10-18 18:16:21 +02:00
parent ca50dfe36c
commit f6c261c35a
2 changed files with 2 additions and 1 deletions

View file

@ -2,4 +2,5 @@ return {
front_end = "WebGpu"; front_end = "WebGpu";
integrated_title_button_style = "Gnome"; integrated_title_button_style = "Gnome";
window_decorations = "INTEGRATED_BUTTONS|RESIZE"; window_decorations = "INTEGRATED_BUTTONS|RESIZE";
-- nix-replace
} }

View file

@ -3,6 +3,6 @@
programs.wezterm = { programs.wezterm = {
enable = true; enable = true;
#enableZshIntegration = true; #enableZshIntegration = true;
extraConfig = builtins.readFile ./wezterm.lua; extraConfig = builtins.replaceStrings [ "-- nix-replace" ] [ "" ] (builtins.readFile ./wezterm.lua);
}; };
} }