nixos/modules/shell/tmux/default.nix

17 lines
273 B
Nix
Raw Normal View History

2023-08-02 16:30:57 +04:00
{ outputs, options, config, lib, pkgs, ...}:
with lib;
let
cfg = config.modules.shell.tmux;
in
{
options.modules.shell.tmux = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
tmux
];
};
}