2024-12-18 11:59:37 +03:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
let
|
|
|
|
accent = config.module.style.color.accent;
|
|
|
|
bg = config.module.style.color.bg.regular;
|
|
|
|
fg = config.module.style.color.fg.light;
|
|
|
|
selectionBg = config.module.style.color.selection;
|
|
|
|
selectionFg = config.module.style.color.fg.dark;
|
|
|
|
in
|
2024-10-11 23:27:07 +03:00
|
|
|
{
|
2024-12-18 11:59:37 +03:00
|
|
|
config = pkgs.replaceVars ./tmux.conf {
|
|
|
|
inherit
|
|
|
|
accent
|
|
|
|
bg
|
|
|
|
fg
|
|
|
|
selectionBg
|
|
|
|
selectionFg
|
|
|
|
;
|
|
|
|
};
|
2024-06-30 03:56:48 +03:00
|
|
|
}
|