dotfiles/modules/home/gui/apps/emulators/wezterm/default.nix
2025-03-29 23:08:26 -05:00

16 lines
274 B
Nix
Executable file

{ flake, ... }:
{
programs.wezterm =
let
configPath = ./config;
extraConfigPath = import (configPath + /extraConfig.nix) {
inherit
flake
;
};
in
{
enable = true;
extraConfig = extraConfigPath;
};
}