{
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
outputs =
inputs:
let
supportedSystems = [
"x86_64-linux"
"aarch64-linux"
];
forAllSystems = inputs.nixpkgs.lib.genAttrs supportedSystems;
pkgs = forAllSystems (system: import inputs.nixpkgs { inherit system; });
in
{
devShells = forAllSystems (system: {
default = pkgs.${system}.callPackage ./shell.nix { };
});
};
}