diff --git a/flake.nix b/flake.nix index 529531e..f23f1cf 100644 --- a/flake.nix +++ b/flake.nix @@ -81,6 +81,8 @@ }; }; }; + # idk why I use two devShells for x86 and aarh instead of one crossplatform + # I just copy-paste this template devShells.x86_64-linux.default = with nixpkgs.legacyPackages.x86_64-linux; mkShell { inherit (checks.pre-commit-check) shellHook; @@ -89,5 +91,13 @@ statix ]; }; + devShells.aarch64-linux.default = with nixpkgs.legacyPackages.aarch64-linux; + mkShell { + inherit (checks.pre-commit-check) shellHook; + buildInputs = [ + alejandra + statix + ]; + }; }; }