dotfiles/home/modules/wezterm/default.nix

14 lines
244 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 19:06:14 -06:00
extraConfigPath = import (configPath + /extraConfig.nix) {
inherit
flake
;
};
2025-01-08 01:05:45 -06:00
in {
enable = true;
extraConfig = extraConfigPath;
};
2024-11-20 17:47:07 -06:00
}