19 lines
315 B
Nix
19 lines
315 B
Nix
{ config, lib, ... }:
|
|
let
|
|
cfg = config.profile.wezterm;
|
|
in
|
|
{
|
|
config = lib.mkIf cfg.enable {
|
|
programs.wezterm = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
enableBashIntegration = true;
|
|
};
|
|
|
|
home.file.".config/wezterm" = {
|
|
source = ./.;
|
|
recursive = true;
|
|
};
|
|
};
|
|
}
|