dotfiles/home/modules/wezterm/default.nix
2024-12-19 19:56:45 -06:00

9 lines
174 B
Nix
Executable file

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