nix-configs/old-conf/hm-modules/zellij/default.nix
Lucy Hochkamp 83de52d5db Add 'old-conf/' from commit '62a64a79a8'
git-subtree-dir: old-conf
git-subtree-mainline: 4667974392
git-subtree-split: 62a64a79a8
2025-11-21 13:33:06 +01:00

12 lines
234 B
Nix

{ pkgs, config, lib, inputs, ... }:
let
cfg = config.ragon.zellij;
in
{
options.ragon.zellij.enable = lib.mkOption { default = false; };
config = lib.mkIf cfg.enable {
programs.zellij = {
enable = true;
};
};
}