aboutsummaryrefslogtreecommitdiffstats
path: root/modules/hm/sils/zellij.nix
blob: 1038a0c569319657fa2fe5db26354c670a5c4a9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  config,
  lib,
  ...
}: let
  cfg = config.sils.zellij;
in {
  options.sils.zellij.enable = lib.mkEnableOption "zellij";
  config = lib.mkIf cfg.enable {
    programs.zellij = {
      enable = true;
    };
  };
}