mirror of
https://github.com/blahai/nyx.git
synced 2025-01-19 11:30:20 +00:00
11 lines
300 B
Nix
11 lines
300 B
Nix
{ inputs, pkgs, lib, config, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
inputs.wezterm.packages.${pkgs.system}.default
|
|
];
|
|
|
|
xdg.configFile."wezterm" = {
|
|
source = config.lib.file.mkOutOfStoreSymlink "/home/pingu/.config/nixos/modules/home-manager/cli/wezterm";
|
|
recursive = true;
|
|
};
|
|
}
|