feat: add wezterm

This commit is contained in:
2024-08-26 21:28:02 -04:00
parent 23a3451031
commit ffbbe070af
6 changed files with 93 additions and 63 deletions

View File

@@ -0,0 +1,10 @@
{ config, pkgs, inputs, ... }:
{
home.packages = [
pkgs.comic-mono
];
programs.wezterm = {
enable = true;
extraConfig = builtins.readFile ./wezterm.lua;
};
}