nix/home/file/tmux/default.nix

20 lines
405 B
Nix
Raw Permalink Normal View History

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-12-18 11:59:37 +03:00
config = pkgs.replaceVars ./tmux.conf {
inherit
accent
bg
fg
selectionBg
selectionFg
;
};
}