nixos-configs/nixFastChecks/devShells/default.nix
matt1432 6ca0d7248b
All checks were successful
Discord / discord commits (push) Has been skipped
refactor: rename some flake attr directories
2024-12-16 15:51:41 -05:00

10 lines
178 B
Nix

{
pkgs,
self,
}: let
inherit (pkgs.lib) mapAttrs' nameValuePair;
in
mapAttrs'
(name: shell:
nameValuePair "devShell_${name}" shell)
self.devShells.${pkgs.system}