stylix/modules/tmux/hm.nix

18 lines
385 B
Nix
Raw Normal View History

2023-05-02 14:51:06 +00:00
{ pkgs, config, lib, ... }:
let
theme = config.lib.stylix.colors {
templateRepo = config.lib.stylix.templates.base16-tmux;
2023-05-02 14:51:06 +00:00
};
in {
options.stylix.targets.tmux.enable =
config.lib.stylix.mkEnableTarget "Tmux" config.programs.tmux.enable;
config = lib.mkIf config.stylix.targets.tmux.enable {
programs.tmux.extraConfig = ''
source-file ${theme}
'';
};
}