nix-zephyr-sdk/shells/nix.nix

19 lines
307 B
Nix
Raw Normal View History

2023-09-11 17:33:19 +02:00
{self, ...}: system:
with self.pkgs.${system};
mkShell {
name = "nix-dev";
buildInputs = [
alejandra
deadnix
git
nil
nixUnstable
pre-commit
reuse
statix
];
shellHook = ''
${self.checks.${system}.pre-commit-check.shellHook}
'';
}