dotfiles/home/modules/wezterm/default.nix

10 lines
217 B
Nix
Raw Normal View History

2024-12-19 19:56:45 -06:00
{flake, ...}: {
2024-11-20 17:47:07 -06:00
programs.wezterm = let
configPath = ./config;
2025-01-08 01:05:45 -06:00
extraConfigPath = import (configPath + "/extraConfig.nix") {inherit flake;};
in {
enable = true;
extraConfig = extraConfigPath;
};
2024-11-20 17:47:07 -06:00
}