nyx/modules/home-manager/cli/wezterm/default.nix

15 lines
255 B
Nix
Raw Normal View History

{
2024-12-20 15:11:42 +02:00
pkgs,
config,
...
}: {
home.packages = with pkgs; [
2025-02-03 04:50:07 +02:00
wezterm-git
];
2024-12-20 15:11:42 +02:00
xdg.configFile."wezterm" = {
source = config.lib.file.mkOutOfStoreSymlink "/home/pingu/.config/nixos/modules/home-manager/cli/wezterm";
recursive = true;
};
}