dotfiles/common/wezterm.nix

12 lines
215 B
Nix
Raw Normal View History

2024-08-02 11:12:36 +02:00
{ config, lib, ... }:
{
config = lib.mkIf config.shelman.desktop.enable {
programs.wezterm = {
enable = true;
extraConfig = builtins.readFile ./../files/config/wezterm/wezterm.lua;
};
};
}