summaryrefslogtreecommitdiffstats
path: root/lib/devShell.nix
blob: 110b8570451fd2dc07526de8a67fa425bd067c2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ 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;
}