nixos/modules/home-manager/shells/zellij.nix
2026-01-11 01:42:54 +00:00

21 lines
278 B
Nix
Executable file

{ config
, lib
, pkgs
, ...
}:
let
cfg = config.custom.shells.zellij;
in
{
options.custom.shells.zellij = {
enable = lib.mkEnableOption "Enable the Zellij multiplexer.";
};
config = lib.mkIf cfg.enable {
programs.zellij = {
enable = true;
};
};
}