Update from master 2023-10-26T01:03+00:00
This commit is contained in:
commit
c043eb0617
10
flake.nix
10
flake.nix
@ -84,18 +84,18 @@
|
|||||||
};
|
};
|
||||||
} // helper.mapToColmenaHosts self.nixosConfigurations;
|
} // helper.mapToColmenaHosts self.nixosConfigurations;
|
||||||
|
|
||||||
packages.x86_64-linux = let
|
packages = nixpkgs.lib.genAttrs [ "x86_64-linux" "aarch64-linux" ] (system: let
|
||||||
pkgs = import nixpkgs {
|
pkgs = import nixpkgs {
|
||||||
|
inherit system;
|
||||||
overlays = [
|
overlays = [
|
||||||
(import ./pkgs/overlay.nix)
|
(import ./pkgs/overlay.nix)
|
||||||
(_: _: {
|
(_: _: {
|
||||||
inherit (agenix.packages."x86_64-linux")
|
inherit (agenix.packages.${system})
|
||||||
agenix;
|
agenix;
|
||||||
inherit (chaosevents.packages."x86_64-linux")
|
inherit (chaosevents.packages.${system})
|
||||||
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)
|
||||||
|
@ -29,6 +29,10 @@
|
|||||||
|
|
||||||
networking.hostName = "krypton";
|
networking.hostName = "krypton";
|
||||||
|
|
||||||
|
boot.binfmt.emulatedSystems = [
|
||||||
|
"aarch64-linux"
|
||||||
|
];
|
||||||
|
|
||||||
system.stateVersion = "23.05";
|
system.stateVersion = "23.05";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user