{ inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; gitignore = { url = "github:hercules-ci/gitignore.nix"; inputs.nixpkgs.follows = "nixpkgs"; }; }; outputs = { self , nixpkgs , gitignore }: let inherit (gitignore.lib) gitignoreSource; supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ]; forAllSystems = nixpkgs.lib.genAttrs supportedSystems; nixpkgsFor = forAllSystems (system: import nixpkgs { inherit system; }); in { devShell = forAllSystems (system: let pkgs = nixpkgsFor."${system}"; in pkgs.mkShell { nativeBuildInputs = [ pkgs.cargo-watch pkgs.bacon pkgs.cargo-insta pkgs.rust-analyzer pkgs.rustc pkgs.rustfmt pkgs.cargo ]; RUST_LOG = "info"; RUST_BACKTRACE = 1; }); }; }