{ config, inputs, lib, pkgs, ... }: let sh = import ./common.nix { inherit pkgs; }; in { options = { devShells.sh = lib.mkOption { type = lib.types.package; default = sh.devShell; description = "Shell scripting dev shell"; }; my.dev.sh = { enable = lib.mkEnableOption "Install shell scripting tools globally"; users = lib.mkOption { type = inputs.self.lib.usersOptionType lib; default = config.my.toggleUsers.dev; description = "Users to install shell scripting packages for"; }; }; }; }