11.stylix/modules/tmux/hm.nix
awwpotato 7ffb31da69
treewide: use mkTarget (batch 2) (#1362)
Link: https://github.com/nix-community/stylix/pull/1362

Reviewed-by: Flameopathic <64027365+Flameopathic@users.noreply.github.com>
Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
2025-05-23 19:23:39 +02:00

18 lines
317 B
Nix

{ mkTarget, ... }:
mkTarget {
name = "tmux";
humanName = "Tmux";
configElements =
{ colors, inputs }:
{
programs.tmux.extraConfig = ''
source-file ${
colors {
templateRepo = inputs.tinted-tmux;
target = "base16";
}
}
'';
};
}