nixos-config/home/tmux.nix

16 lines
297 B
Nix
Raw Permalink 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;
2021-04-19 17:09:16 +02:00
plugins = with pkgs; [ packages.tmux-thumbs ];
2021-04-19 18:59:24 +02:00
};
}