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>
18 lines
317 B
Nix
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";
|
|
}
|
|
}
|
|
'';
|
|
};
|
|
}
|