share-host/nix/devshells.nix
Ingolf Wagner e6f403cc4c
🎉 init
2024-11-16 22:07:17 +07:00

14 lines
256 B
Nix

_: {
perSystem =
{ pkgs, self', ... }:
{
devShells = {
default = pkgs.mkShell {
inputsFrom = [ self'.packages.default ];
packages = [
self'.formatter.outPath
];
};
};
};
}