nixos/user/programs/tmux/default.nix

21 lines
267 B
Nix
Raw Normal View History

2024-12-04 16:27:03 +01:00
{
pkgs,
lib,
config,
...
}:
2024-03-18 12:58:34 +01:00
with lib;
2024-12-04 16:27:03 +01:00
let
cfg = config.tmux.enable;
in
{
2024-03-18 12:58:34 +01:00
options.tmux.enable = mkEnableOption "tmux";
config = mkIf cfg {
programs.tmux = {
enable = true;
prefix = "C-a";
terminal = "screen-256color";
};
};
}