mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
12 lines
213 B
Nix
12 lines
213 B
Nix
_: {
|
|
programs.wezterm = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
local = wezterm = require 'wezterm'
|
|
return {
|
|
check_for_updates = false,
|
|
enable_tab_bar = true
|
|
}
|
|
'';
|
|
};
|
|
}
|