1
0

Compare commits

..

No commits in common. "d212eb2163cd6b80c5b41501938bc931eb3eb04a" and "81de5f91ee414883d755565877ff87ba8643ecd9" have entirely different histories.

3 changed files with 14 additions and 18 deletions

View File

@ -215,11 +215,11 @@
}, },
"nixpkgs-krypton": { "nixpkgs-krypton": {
"locked": { "locked": {
"lastModified": 1698134075, "lastModified": 1697723726,
"narHash": "sha256-foCD+nuKzfh49bIoiCBur4+Fx1nozo+4C/6k8BYk4sg=", "narHash": "sha256-SaTWPkI8a5xSHX/rrKzUe+/uVNy6zCGMXgoeMb7T9rg=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "8efd5d1e283604f75a808a20e6cde0ef313d07d4", "rev": "7c9cc5a6e5d38010801741ac830a3f8fd667a7a0",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -231,11 +231,11 @@
}, },
"nixpkgs-schule": { "nixpkgs-schule": {
"locked": { "locked": {
"lastModified": 1698134075, "lastModified": 1697723726,
"narHash": "sha256-foCD+nuKzfh49bIoiCBur4+Fx1nozo+4C/6k8BYk4sg=", "narHash": "sha256-SaTWPkI8a5xSHX/rrKzUe+/uVNy6zCGMXgoeMb7T9rg=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "8efd5d1e283604f75a808a20e6cde0ef313d07d4", "rev": "7c9cc5a6e5d38010801741ac830a3f8fd667a7a0",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -247,11 +247,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1698134075, "lastModified": 1697723726,
"narHash": "sha256-foCD+nuKzfh49bIoiCBur4+Fx1nozo+4C/6k8BYk4sg=", "narHash": "sha256-SaTWPkI8a5xSHX/rrKzUe+/uVNy6zCGMXgoeMb7T9rg=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "8efd5d1e283604f75a808a20e6cde0ef313d07d4", "rev": "7c9cc5a6e5d38010801741ac830a3f8fd667a7a0",
"type": "github" "type": "github"
}, },
"original": { "original": {

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";
} }