NixOS/parts/devshells.nix
2025-10-12 13:23:38 -06:00

13 lines
256 B
Nix

{ inputs, ... }:
{
perSystem = _: {
devShells =
inputs.self.lib.langList
|> map (name: {
inherit name;
value = inputs.self.nixosConfigurations.emacs.config.devShells.${name};
})
|> builtins.listToAttrs;
};
}