stylix/modules/tmux/hm.nix

19 lines
405 B
Nix
Raw Normal View History

2024-12-24 16:04:27 +01:00
{ 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}
'';
};
}