ark/users/patriot/config/wezterm/cfg.nix
2022-04-24 03:44:42 +03:00

13 lines
283 B
Nix

{font, ...}: ''
local wezterm = require 'wezterm';
return {
font = wezterm.font("${font.name}"),
font_size = ${builtins.toJSON font.size},
color_scheme = "Grape",
default_cursor_style = "BlinkingBar",
enable_wayland = true,
enable_tab_bar = false
}
''