1
0

Compare commits

..

No commits in common. "0111f67b6d68d2f819612c7767d8769c5ebfc181" and "2150b4bfb083af339910f9a8bc30bb1a80a56ae8" have entirely different histories.

2 changed files with 5 additions and 9 deletions

View File

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

View File

@ -29,10 +29,6 @@
networking.hostName = "krypton"; networking.hostName = "krypton";
boot.binfmt.emulatedSystems = [
"aarch64-linux"
];
system.stateVersion = "23.05"; system.stateVersion = "23.05";
} }