dotfiles/common/wezterm.nix

11 lines
215 B
Nix

{ config, lib, ... }:
{
config = lib.mkIf config.shelman.desktop.enable {
programs.wezterm = {
enable = true;
extraConfig = builtins.readFile ./../files/config/wezterm/wezterm.lua;
};
};
}