dotfiles/home/apps/wezterm.nix

13 lines
231 B
Nix
Raw Normal View History

{
2023-02-10 07:46:37 +01:00
config,
flakePath,
...
}: {
home.sessionVariables = {TERMINAL = "wezterm";};
2023-02-12 08:05:51 +01:00
xdg.configFile."wezterm" = {
2023-02-19 00:18:25 +01:00
source = config.lib.file.mkOutOfStoreSymlink "${flakePath}/home/apps/wezterm";
2023-02-12 08:05:51 +01:00
recursive = true;
};
}