dotfiles/modules/wezterm.nix

13 lines
196 B
Nix
Raw Normal View History

{
2023-02-10 07:46:37 +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;
};
};
}