Rename mkTarget's 'configElements' argument to 'config' and 'extraOptions' to 'options' to provide a more transparent interface with the underlying Nixpkgs module system.
18 lines
309 B
Nix
18 lines
309 B
Nix
{ mkTarget, ... }:
|
|
mkTarget {
|
|
name = "tmux";
|
|
humanName = "Tmux";
|
|
|
|
config =
|
|
{ colors, inputs }:
|
|
{
|
|
programs.tmux.extraConfig = ''
|
|
source-file ${
|
|
colors {
|
|
templateRepo = inputs.tinted-tmux;
|
|
target = "base16";
|
|
}
|
|
}
|
|
'';
|
|
};
|
|
}
|