mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-06 04:56:34 +05:30
32 lines
713 B
Nix
32 lines
713 B
Nix
{ ... }: {
|
|
programs.wezterm = {
|
|
enable = true;
|
|
|
|
extraConfig = ''
|
|
local wezterm = require 'wezterm'
|
|
local config = {}
|
|
|
|
config.window_close_confirmation = 'NeverPrompt'
|
|
config.color_scheme = 'Gruvbox Dark (Gogh)'
|
|
config.colors = {
|
|
background = "#0f0f0f"
|
|
}
|
|
config.enable_tab_bar = false
|
|
config.font = wezterm.font_with_fallback {
|
|
'FiraCode Nerd Font',
|
|
}
|
|
config.font_size = 18.0
|
|
config.window_background_opacity = 1
|
|
config.window_padding = {
|
|
left = '20px',
|
|
right = '20px',
|
|
top = '20px',
|
|
bottom = '20px',
|
|
}
|
|
config.audible_bell = "Disabled"
|
|
|
|
return config
|
|
'';
|
|
};
|
|
}
|