dotfiles/modules/wezterm.nix

13 lines
229 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" = {
source = config.lib.file.mkOutOfStoreSymlink "${flakePath}/modules/wezterm";
recursive = true;
};
}