dotfiles/home/apps/wezterm.nix

12 lines
231 B
Nix

{
config,
flakePath,
...
}: {
home.sessionVariables = {TERMINAL = "wezterm";};
xdg.configFile."wezterm" = {
source = config.lib.file.mkOutOfStoreSymlink "${flakePath}/home/apps/wezterm";
recursive = true;
};
}