dotfiles/modules/wezterm.nix

11 lines
191 B
Nix
Raw Normal View History

2023-02-10 06:34:05 +01:00
{ config, flakePath, ... }:
{
xdg.configFile = {
"wezterm" = {
2023-02-10 06:34:05 +01:00
source = config.lib.file.mkOutOfStoreSymlink "${flakePath}/modules/wezterm";
recursive = true;
};
};
}