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