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

13 lines
161 B
Nix
Raw Normal View History

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