dotfiles/home/common/wezterm.nix

12 lines
218 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;
2024-08-02 14:09:42 +02:00
extraConfig = builtins.readFile ./../../files/config/wezterm/wezterm.lua;
2024-08-02 11:12:36 +02:00
};
};
}