flake.nix: remove invalid nixosConfigurations

This breaks `nix flake show`. It's not quite clear to me why this is
needed in packages.
This commit is contained in:
Jörg Thalheim 2021-02-10 09:16:24 +01:00
parent c239d0de25
commit a62078b0da
No known key found for this signature in database
GPG Key ID: B3F5D81B0C6967C4

View File

@ -21,15 +21,6 @@
--prefix PATH : ${pkgs.lib.makeBinPath (with pkgs; [ jq coreutils findutils ])}
'';
};
# Currently, you need to mark your configurations with makeOverridable in
# order to use nixos-generate on them.
nixosConfigurations.example = nixpkgs.lib.makeOverridable nixpkgs.lib.nixosSystem {
inherit system;
modules = [
./configuration.nix
];
};
});
defaultPackage = forAllSystems (system: self.packages."${system}".nixos-generators);