1
Fork 0
satellite/home/features/desktop/wezterm/default.nix

11 lines
352 B
Nix
Raw Normal View History

2024-03-07 02:47:37 +01:00
{ inputs, upkgs, config, ... }: {
home.packages = [ upkgs.wezterm ];
xdg.configFile."wezterm/nix".source =
config.satellite.lib.lua.writeFile
"." "colorscheme"
2023-12-21 16:21:14 +01:00
"return ${config.satellite.colorscheme.lua}";
xdg.configFile."wezterm/wezterm.lua".source =
2023-05-28 05:24:36 +02:00
config.satellite.dev.path "home/features/desktop/wezterm/wezterm.lua";
}