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

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