dotfiles/home/common/wezterm.nix
2024-09-02 19:48:24 +02:00

11 lines
218 B
Nix

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