ark/users/patriot/config/wezterm/cfg.nix

10 lines
188 B
Nix
Raw Normal View History

2022-04-22 07:40:28 +03:00
{font, ...}: ''
local wezterm = require 'wezterm';
return {
font = wezterm.font("${font.name}"),
font_size = ${builtins.toJSON font.size},
color_scheme = "mytheme"
}
''