marleyos/modules/home/programs/gui/wezterm/default.nix

47 lines
1.1 KiB
Nix
Raw Normal View History

2024-11-17 05:10:07 +00:00
{
lib,
config,
system,
2024-11-17 05:10:07 +00:00
pkgs,
...
2025-01-09 16:08:30 +00:00
}: let
inherit (lib.snowfall.system) is-darwin;
2024-11-17 05:10:07 +00:00
cfg = config.marleyos.programs.wezterm;
2024-11-17 05:10:07 +00:00
isGenericLinux = config.targets.genericLinux.enable;
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
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"
config.freetype_load_flags = 'NO_HINTING'
2024-11-17 05:10:07 +00:00
config.enable_tab_bar = false
return config
'';
};
};
}