1
0
Fork 0
mirror of https://github.com/hercules-ci/flake-parts.git synced 2025-03-15 21:08:26 +00:00
flake-parts/modules/devShells.nix

23 lines
548 B
Nix
Raw Normal View History

2022-05-25 16:36:33 +02:00
{ config, lib, flake-parts-lib, ... }:
let
inherit (lib)
mkOption
types
;
2022-05-25 16:36:33 +02:00
inherit (flake-parts-lib)
mkTransposedPerSystemModule
;
in
mkTransposedPerSystemModule {
name = "devShells";
option = mkOption {
type = types.lazyAttrsOf types.package;
default = { };
description = ''
2022-11-11 06:40:37 +01:00
An attribute set of packages to be used as shells.
[`nix develop .#<name>`](https://nixos.org/manual/nix/stable/command-ref/new-cli/nix3-develop.html) will run `devShells.<name>`.
'';
};
file = ./devShells.nix;
}