feat: configure wezterm in nix

This commit is contained in:
notohh 2023-01-30 11:32:32 -05:00
parent 914f3b7582
commit a0c03ed10f
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{default, ...}: {
programs.wezterm = {
enable = true;
extraConfig = ''
local wezterm = require 'wezterm'
return {
enable_wayland = false,
font = wezterm.font 'Comic Code Ligatures',
font_size = 12.0,
hide_tab_bar_if_only_one_tab = true,
color_scheme = 'Catppuccin Mocha',
window_padding = {
top = 0,
bottom = 0,
left = 0,
right = 0,
}
}
'';
};
}