19 lines
405 B
Nix
19 lines
405 B
Nix
{ config, lib, ... }:
|
|
|
|
let
|
|
theme = config.lib.stylix.colors {
|
|
templateRepo = config.lib.stylix.templates.tinted-tmux;
|
|
target = "base16";
|
|
};
|
|
|
|
in {
|
|
options.stylix.targets.tmux.enable =
|
|
config.lib.stylix.mkEnableTarget "Tmux" true;
|
|
|
|
config = lib.mkIf (config.stylix.enable && config.stylix.targets.tmux.enable) {
|
|
programs.tmux.extraConfig = ''
|
|
source-file ${theme}
|
|
'';
|
|
};
|
|
}
|