ark/users/patriot/config/wezterm/cfg.nix
2022-04-22 07:40:28 +03:00

10 lines
188 B
Nix

{font, ...}: ''
local wezterm = require 'wezterm';
return {
font = wezterm.font("${font.name}"),
font_size = ${builtins.toJSON font.size},
color_scheme = "mytheme"
}
''