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.

deduplicate docs package in hydraJobs

marshmallow e2ee8ee5 1164d15c

+5 -2
+5 -2
flake.nix
··· 50 50 inherit (inputs.nixpkgs) lib; 51 51 in 52 52 { 53 - packages = lib.genAttrs [ "x86_64-linux" "aarch64-linux" ] (system: { 54 - inherit (self.packages.${system}) wire wire-small docs; 53 + packages = { 54 + inherit (self.packages.x86_64-linux) docs; 55 + } 56 + // lib.genAttrs [ "x86_64-linux" "aarch64-linux" ] (system: { 57 + inherit (self.packages.${system}) wire wire-small; 55 58 }); 56 59 57 60 tests = lib.filterAttrs (n: _: (lib.hasPrefix "vm" n)) self.checks.x86_64-linux;