{ description = "FlowFlexure - an open source flow imaging microscope"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; flake-utils.url = "github:numtide/flake-utils"; pre-commit = { url = "github:cachix/pre-commit-hooks.nix"; inputs.nixpkgs.follows = "nixpkgs"; }; }; outputs = { nixpkgs, flake-utils, ... } @ inputs: flake-utils.lib.eachSystem ["aarch64-linux" "x86_64-linux"] (system: { pkgs = import nixpkgs { inherit system; config.allowUnfree = true; }; devShells.default = import ./nix/shell.nix inputs system; checks = import ./nix/checks.nix inputs system; }); }