From db88d50e8924cba8b424c0ea7546b81baccd9c5c Mon Sep 17 00:00:00 2001 From: schererleander Date: Tue, 29 Apr 2025 16:59:25 +0200 Subject: initial commit --- modules/home-manager/tmux.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 modules/home-manager/tmux.nix (limited to 'modules/home-manager/tmux.nix') diff --git a/modules/home-manager/tmux.nix b/modules/home-manager/tmux.nix new file mode 100644 index 0000000..c4bfefc --- /dev/null +++ b/modules/home-manager/tmux.nix @@ -0,0 +1,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; + }; + }; +} + -- cgit v1.3.1