zellij/nix/devShell.nix
a-kenji bd849574be
add(nix): treefmt / alejandra (#1201)
* add(nix): treefmt / alejandra

* fmt the nix tree

* add fmt check for nix to ci

* switch `nixpkgs-fmt` -> `alejandra`
2022-03-10 16:27:39 +01:00

12 lines
178 B
Nix

{
mkShell,
buildInputs,
nativeBuildInputs,
}:
mkShell {
name = "zj-dev-env";
inherit buildInputs nativeBuildInputs;
### Environment Variables
RUST_BACKTRACE = 1;
}