13 lines
184 B
Nix
13 lines
184 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.wezterm = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
};
|
|
|
|
home.file.".config/wezterm" = {
|
|
recursive = true;
|
|
source = ./config;
|
|
};
|
|
} |