add wezterm

This commit is contained in:
Salar Rahmanian 2023-02-11 21:04:42 -08:00
parent 2e60e6925f
commit 03412261b5
5 changed files with 246 additions and 15 deletions

View file

@ -0,0 +1,11 @@
{ config, pkgs, ... }:
let
weztermConfig = builtins.readFile ./wezterm.lua;
in
{
programs.wezterm = {
enable = true;
extraConfig = weztermConfig;
};
}