From 9f5c000ef1e0601acf5d56895949d9729584a2c9 Mon Sep 17 00:00:00 2001 From: Thiago Sposito Date: Mon, 25 Aug 2025 21:07:45 -0300 Subject: [PATCH] mend --- flake.nix | 9 +++++++++ 1 file changed, 9 insertions(+) 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; } + ]; + }; }