diff --git a/flake.nix b/flake.nix index 88e508e..c5efb5c 100644 --- a/flake.nix +++ b/flake.nix @@ -22,6 +22,7 @@ }@inputs: let inherit (self) outputs; + system = "x86_64-linux"; in { nixosConfigurations = { @@ -66,5 +67,13 @@ ]; }; }; + # nix build .#checks.x86_64-linux + packages.${system}.all = nixpkgs.legacyPackages.${system}.linkFarm "all-builds" [ + { name = "nixbook"; path = self.nixosConfigurations.Nixbook.config.system.build.toplevel; } + { name = "nixstation"; path = self.nixosConfigurations.Nixstation.config.system.build.toplevel; } + { name = "hm-nixbook"; path = self.homeConfigurations."thiago@Nixbook".activationPackage; } + { name = "hm-nixstation"; path = self.homeConfigurations."thiago@Nixstation".activationPackage; } + ]; + }; }