dotfiles/home/modules/gui/apps/emulators/wezterm/default.nix

17 lines
274 B
Nix
Raw Normal View History

2025-01-18 03:50:54 -06:00
{ flake, ... }:
{
2025-01-19 23:40:54 -06:00
programs.wezterm =
2025-01-18 03:50:54 -06:00
let
configPath = ./config;
2025-01-19 23:40:54 -06:00
extraConfigPath = import (configPath + /extraConfig.nix) {
2025-01-18 03:50:54 -06:00
inherit
flake
;
};
in
{
enable = true;
2025-01-19 23:40:54 -06:00
extraConfig = extraConfigPath;
2025-01-08 19:06:14 -06:00
};
2024-11-20 17:47:07 -06:00
}