This commit is contained in:
Thiago Sposito 2025-08-25 21:07:45 -03:00
parent 95e94196b2
commit 9f5c000ef1

View file

@ -22,6 +22,7 @@
}@inputs: }@inputs:
let let
inherit (self) outputs; inherit (self) outputs;
system = "x86_64-linux";
in in
{ {
nixosConfigurations = { 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; }
];
}; };
} }