This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/user/configs/wezterm/default.nix

27 lines
396 B
Nix
Executable File

{
config,
pkgs,
inputs,
...
}: {
programs.wezterm = {
enable = true;
extraConfig =
/*
lua
*/
''
local wezterm = require("wezterm")
local config = {}
if wezterm.config_builder then
config = wezterm.config_builder()
end
config.color_scheme = 'Gruvbox Dark (Gogh)'
return config
'';
};
}