flocon/home/base/programs/wezterm.nix

18 lines
300 B
Nix
Raw Normal View History

{ ... }:
{
programs.wezterm = {
enable = true;
extraConfig = ''
local wezterm = require 'wezterm'
return {
font = wezterm.font 'MonaspiceNe Nerd Font',
front_end = "WebGpu",
enable_tab_bar = false,
enable_wayland = false
}
'';
};
}