feat: configure wezterm in nix
This commit is contained in:
parent
914f3b7582
commit
a0c03ed10f
2 changed files with 23 additions and 0 deletions
23
modules/home/wezterm/wezterm.nix
Normal file
23
modules/home/wezterm/wezterm.nix
Normal 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,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue