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

View File

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