{ inputs, self, withSystem, ... }: let mkSystem = system: withSystem system ( { inputs', self', ... }: inputs.nixpkgs.lib.nixosSystem { inherit system; specialArgs = { inherit inputs inputs' self self' ; }; modules = [ "${self}/tests/nixos/configuration.nix" ]; } ); in { flake.nixosConfigurations = { default = mkSystem "x86_64-linux"; }; }