nix/modules/home-manager/wezterm.nix

11 lines
142 B
Nix
Raw Normal View History

2023-11-07 21:52:16 -06:00
{
2023-11-12 11:19:33 -06:00
# font,
# colors,
2023-11-07 21:52:16 -06:00
...
}: {
2023-10-05 13:43:28 -05:00
programs.wezterm = {
enable = true;
2023-11-12 11:19:33 -06:00
extraConfig = builtins.readFile ./wezterm/config.lua;
2023-10-05 13:43:28 -05:00
};
}