nixos-configs/nixFastChecks/devShells/default.nix

11 lines
178 B
Nix
Raw Normal View History

2024-12-16 15:02:39 -05:00
{
pkgs,
self,
}: let
inherit (pkgs.lib) mapAttrs' nameValuePair;
in
mapAttrs'
(name: shell:
nameValuePair "devShell_${name}" shell)
self.devShells.${pkgs.system}