mirror of
https://github.com/zellij-org/zellij.git
synced 2024-11-23 08:57:14 +03:00
bd849574be
* add(nix): treefmt / alejandra * fmt the nix tree * add fmt check for nix to ci * switch `nixpkgs-fmt` -> `alejandra`
12 lines
178 B
Nix
12 lines
178 B
Nix
{
|
|
mkShell,
|
|
buildInputs,
|
|
nativeBuildInputs,
|
|
}:
|
|
mkShell {
|
|
name = "zj-dev-env";
|
|
inherit buildInputs nativeBuildInputs;
|
|
### Environment Variables
|
|
RUST_BACKTRACE = 1;
|
|
}
|