nix-config/modules/home/shell/wezterm.nix

7 lines
109 B
Nix
Raw Normal View History

2024-05-07 03:23:55 -04:00
{...}: {
programs.wezterm = {
enable = true;
2024-06-13 23:47:00 -04:00
extraConfig = builtins.readFile ./wezterm.lua;
2024-05-07 03:23:55 -04:00
};
}