dotfiles/home/common/wezterm.nix

12 lines
218 B
Nix
Raw Normal View History

2024-08-02 11:12:36 +02:00
{ config, lib, ... }:
{
2024-09-02 14:43:17 +02:00
config = lib.mkIf config.patagia.desktop.enable {
2024-08-02 11:12:36 +02:00
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
};
};
}