mirror of
https://github.com/blahai/nyx.git
synced 2025-01-19 03:20:20 +00:00
12 lines
300 B
Nix
12 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;
|
||
|
};
|
||
|
}
|