1
Fork 0
satellite/home/features/desktop/wezterm/default.nix
2023-05-28 05:24:36 +02:00

9 lines
297 B
Nix

{ pkgs, config, ... }: {
home.packages = [ pkgs.wezterm ];
# Create link to config
xdg.configFile."wezterm/colorscheme.lua".text = config.satellite.colorscheme.lua;
xdg.configFile."wezterm/wezterm.lua".source =
config.satellite.dev.path "home/features/desktop/wezterm/wezterm.lua";
}