dotfiles/modules/wezterm/default.nix
2025-02-03 11:52:08 -05:00

15 lines
187 B
Nix

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