dotfiles/modules/wezterm/default.nix
2024-11-20 10:57:39 -05:00

15 lines
186 B
Nix

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