nixos/home/programs/tmux/default.nix

21 lines
267 B
Nix
Raw Permalink Normal View History

2024-07-17 20:22:04 +00:00
{
pkgs,
lib,
config,
...
}:
2024-02-27 10:59:28 +00:00
with lib;
2024-07-17 20:22:04 +00:00
let
cfg = config.tmux.enable;
in
{
2024-02-27 10:59:28 +00:00
options.tmux.enable = mkEnableOption "tmux";
config = mkIf cfg {
programs.tmux = {
enable = true;
prefix = "C-a";
terminal = "screen-256color";
};
};
}