1 { pkgs, lib, config, ... }:
2 let inherit (lib) types;
6 nix-shell.buildInputs = lib.mkOption {
7 type = types.listOf types.package;
10 To be prepended to the shell.nix's buildInputs.
13 nix-shell.shellHook = lib.mkOption {
17 To be prepended to the shell.nix's shellHook.