ALPHA: wire is a tool to deploy nixos systems wire.althaea.zone/
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

add tests and select packages in hydraJobs

marshmallow 99704d7d 7ecc3463

+12 -1
+12 -1
flake.nix
··· 19 19 outputs = 20 20 { 21 21 self, 22 + nixpkgs, 22 23 flake-parts, 23 24 systems, 24 25 git-hooks, ··· 44 45 flake = { 45 46 nixosModules.default = import ./runtime/module.nix; 46 47 makeHive = import ./runtime/makeHive.nix; 47 - hydraJobs = { inherit (self.packages) x86_64-linux; }; 48 + hydraJobs = 49 + let 50 + inherit (inputs.nixpkgs) lib; 51 + in 52 + { 53 + packages = lib.genAttrs [ "x86_64-linux" "aarch64-linux" ] (system: { 54 + inherit (self.packages.${system}) wire docs; 55 + }); 56 + 57 + tests = lib.filterAttrs (n: _: (lib.hasPrefix "vm" n)) self.checks.x86_64-linux; 58 + }; 48 59 }; 49 60 50 61 perSystem =