dotfiles/home/modules/wezterm/default.nix

10 lines
174 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;
in
{
enable = true;
}
2024-12-19 19:56:45 -06:00
// (import (configPath + /extraConfig.nix) {inherit flake;});
2024-11-20 17:47:07 -06:00
}