nixos-config/home/tmux.nix

27 lines
505 B
Nix
Raw Normal View History

2021-04-19 18:59:24 +02:00
{ config, lib, pkgs, ... }:
let
cfg = config.my.home.tmux;
in
{
options.my.home.tmux = with lib; {
enable = mkEnableOption "tmux dotfiles";
};
config.programs.tmux = lib.mkIf cfg.enable {
enable = true;
baseIndex = 1;
terminal = "screen-256color";
2021-06-21 17:17:29 +02:00
clock24 = true;
2021-06-21 17:30:42 +02:00
plugins = with pkgs; [
2021-06-21 17:44:19 +02:00
tmuxPlugins.cpu
2021-06-21 17:30:42 +02:00
{
plugin = tmuxPlugins.tmux-colors-solarized;
extraConfig = ''
set -g @colors-solarized 'light'
'';
}
];
2021-04-19 18:59:24 +02:00
};
}