{ config, inputs, lib, pkgs, ... }: let feature = import ./common.nix { inherit pkgs; }; in { options = { devShells.ruby = lib.mkOption { type = lib.types.package; default = feature.devShell; description = "Ruby development shell with interpreter and Solargraph LSP"; }; my.dev.ruby = { enable = lib.mkEnableOption "Install Ruby tooling globally"; users = lib.mkOption { type = inputs.self.lib.usersOptionType lib; default = config.my.toggleUsers.dev; description = "Users to install Ruby packages for"; }; }; }; }