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

11 lines
142 B
Nix
Raw Normal View History

2024-12-18 01:12:10 -05:00
{
inputs,
pkgs,
...
}: {
programs.wezterm = {
enable = true;
package = inputs.wezterm.packages.${pkgs.system}.default;
};
2024-05-07 03:23:55 -04:00
}