mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
15 lines
323 B
Nix
15 lines
323 B
Nix
_: {
|
|
programs.wezterm = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
local wezterm = require 'wezterm';
|
|
return {
|
|
font = wezterm.font "Monaspace Krypton",
|
|
font_size = 10.0,
|
|
check_for_updates = false,
|
|
show_update_window = false,
|
|
enable_tab_bar = true
|
|
}
|
|
'';
|
|
};
|
|
}
|