reciproka-ops/shell.nix

17 lines
257 B
Nix
Raw Normal View History

2022-07-18 22:20:05 +00:00
{
pkgs ? import <nixpkgs> {},
alejandra,
mkShell,
nixops,
nix,
}:
with pkgs;
mkShell {
buildInputs = [
alejandra # The Uncompromising Nix Code Formatter
nixops
nix
treefmt # one CLI to format the code tree
];
}