dotfiles/modules/wezterm/default.nix
2024-08-26 21:28:02 -04:00

10 lines
177 B
Nix

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