{
inputs.nixpkgs.url = "NixOS/nixpkgs/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.callPackage ./shell.nix { inherit pkgs; };
});
};
}