dotfiles.nix/home-manager/sajenim/features/desktop/wezterm/default.nix

13 lines
164 B
Nix
Raw Normal View History

2024-08-08 09:02:42 +08:00
{pkgs, ...}: {
2024-09-20 20:24:55 +08:00
home.packages = with pkgs; [
2024-07-27 08:25:17 +08:00
wezterm
];
xdg.configFile = {
2024-08-08 09:02:42 +08:00
wezterm = {
source = ./config;
recursive = true;
};
2024-07-27 08:25:17 +08:00
};
}