diff --git a/flake.nix b/flake.nix index e76045881..d83c2ecad 100644 --- a/flake.nix +++ b/flake.nix @@ -22,6 +22,7 @@ outputs = inputs@{ self, nixpkgs, nixpkgs-regression, libgit2, ... }: + let inherit (nixpkgs) lib; @@ -356,9 +357,5 @@ default = self.devShells.${system}.native-stdenvPackages; } ); - - # Expected by the DeterminateSystems/nix-installer flake. - tarballs_indirect = forAllSystems (system: self.checks."${system}".binaryTarball); - tarballs_direct = forAllSystems (system: "${self.checks."${system}".binaryTarball}/nix-${self.packages."${system}".default.version}-${system}.tar.xz"); - }; + }; }