mirror of
https://github.com/blahai/nyx.git
synced 2025-02-23 21:05:09 +00:00
14 lines
255 B
Nix
14 lines
255 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
home.packages = with pkgs; [
|
|
wezterm-git
|
|
];
|
|
|
|
xdg.configFile."wezterm" = {
|
|
source = config.lib.file.mkOutOfStoreSymlink "/home/pingu/.config/nixos/modules/home-manager/cli/wezterm";
|
|
recursive = true;
|
|
};
|
|
}
|