1
0
Fork 0

flake.nix: multi system packages

This commit is contained in:
clerie 2023-10-25 18:28:37 +02:00
parent 36e6d96d2c
commit 0111f67b6d
1 changed files with 5 additions and 5 deletions

View File

@ -84,18 +84,18 @@
};
} // helper.mapToColmenaHosts self.nixosConfigurations;
packages.x86_64-linux = let
packages = nixpkgs.lib.genAttrs [ "x86_64-linux" "aarch64-linux" ] (system: let
pkgs = import nixpkgs {
inherit system;
overlays = [
(import ./pkgs/overlay.nix)
(_: _: {
inherit (agenix.packages."x86_64-linux")
inherit (agenix.packages.${system})
agenix;
inherit (chaosevents.packages."x86_64-linux")
inherit (chaosevents.packages.${system})
chaosevents;
})
];
system = "x86_64-linux";
};
in {
inherit (pkgs)
@ -113,7 +113,7 @@
update-from-hydra
uptimestatus
wetter;
};
});
hydraJobs = {
inherit (self)