{ config, lib, pkgs, ... }: { options = { devShell = lib.mkOption { type = lib.types.attrsOf lib.types.unspecified; default = pkgs.mkShell {}; }; outputs.devShell = lib.mkOption { type = lib.types.package; }; }; config.outputs.devShell = config.devShell; }