2024-11-17 05:10:07 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
2024-11-22 04:28:46 +00:00
|
|
|
system,
|
2024-11-17 05:10:07 +00:00
|
|
|
pkgs,
|
|
|
|
...
|
2025-01-09 16:08:30 +00:00
|
|
|
}: let
|
2024-11-22 04:28:46 +00:00
|
|
|
inherit (lib.snowfall.system) is-darwin;
|
2024-11-17 05:10:07 +00:00
|
|
|
|
2024-11-17 06:34:40 +00:00
|
|
|
cfg = config.marleyos.programs.wezterm;
|
2024-11-17 05:10:07 +00:00
|
|
|
|
|
|
|
isGenericLinux = config.targets.genericLinux.enable;
|
2024-11-22 04:28:46 +00:00
|
|
|
isNotNixOS = isGenericLinux || (is-darwin system);
|
2025-01-09 16:08:30 +00:00
|
|
|
in {
|
2025-01-12 20:12:40 +00:00
|
|
|
options.marleyos.programs.wezterm.enable = lib.mkEnableOption "wezterm";
|
2024-11-17 05:10:07 +00:00
|
|
|
|
2025-01-12 20:12:40 +00:00
|
|
|
config = lib.mkIf cfg.enable {
|
2024-11-17 05:10:07 +00:00
|
|
|
programs.wezterm = {
|
|
|
|
enable = true;
|
|
|
|
|
2024-11-23 05:38:01 +00:00
|
|
|
# Generic linux: NixGL makes Wezterm shit the bed for some reason.
|
|
|
|
# macOS: Prefer brew cask so a proper Applications shortcut is made.
|
2025-01-09 16:08:30 +00:00
|
|
|
package =
|
|
|
|
if isNotNixOS
|
|
|
|
then pkgs.emptyDirectory
|
2025-01-12 05:15:24 +00:00
|
|
|
else pkgs.wezterm;
|
2024-11-17 05:10:07 +00:00
|
|
|
|
|
|
|
# TODO: create `local config` & return it seperately, so other modules can
|
|
|
|
# insert config in the middle
|
2025-03-02 18:41:56 +00:00
|
|
|
extraConfig =
|
2024-11-17 05:10:07 +00:00
|
|
|
# lua
|
|
|
|
''
|
|
|
|
local config = wezterm.config_builder()
|
|
|
|
|
2025-01-09 16:08:30 +00:00
|
|
|
-- Fix color blocks instead of text issue.
|
|
|
|
config.front_end = "WebGpu"
|
|
|
|
|
2025-03-02 22:33:29 +00:00
|
|
|
config.freetype_load_flags = 'NO_HINTING'
|
|
|
|
|
2024-11-17 05:10:07 +00:00
|
|
|
config.enable_tab_bar = false
|
|
|
|
|
|
|
|
return config
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|