share-host/nix/devshells.nix

15 lines
256 B
Nix
Raw Permalink Normal View History

2024-11-16 16:07:17 +01:00
_: {
perSystem =
{ pkgs, self', ... }:
{
devShells = {
default = pkgs.mkShell {
inputsFrom = [ self'.packages.default ];
packages = [
self'.formatter.outPath
];
};
};
};
}