blob: c4bfefcacfc6d5c48d125e4c09b069977af47b3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ config, lib, pkgs, ... }:
let
cfg = config.tmux;
in {
options.tmux.enable = lib.mkEnableOption "Enable and configure Tmux";
config = lib.mkIf cfg.enable {
programs.tmux = {
enable = true;
};
};
}
|