summaryrefslogtreecommitdiff
path: root/hm/shell/zellij.nix
blob: 333d5544121c4a9d6f526bc1692871072d22e65c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ lib, config, ... }:
let
  cfg = config.hm.shell.zellij;
in
{
  options.hm.shell.zellij.enable = lib.mkEnableOption "enables zellij terminal multiplexer";

  config = lib.mkIf cfg.enable {
    programs.zellij = {
      enable = true;
      # enableFishIntegration = true;
    };
  };
}