Updates to Flakes and Zeke

Add /dev/sda1 to Zeke
Update Flakes
Add initial colmena support
Add colmena to shells
Update kubernetes pins
This commit is contained in:
Greg Hellings
2025-12-16 08:15:32 -06:00
parent 854aed86e0
commit ca04085edf
+8 -3
View File
@@ -66,6 +66,7 @@
local_overlay
packages_overlay
top.nixvimunstable.overlays.default
top.proxmox.overlays.x86_64-linux
];
metadata = builtins.fromJSON (builtins.readFile ./network.json);
@@ -82,12 +83,16 @@
{
meta = {
nixpkgs = import top.nixunstable {
inherit overlays;
system = "x86_64-linux";
overlays = overlays ++ [ top.proxmox.overlays.x86_64-linux ];
};
specialArgs = {
inherit metadata self top;
overlays = overlays ++ [ top.proxmox.overlays.x86_64-linux ];
inherit
metadata
self
top
overlays
;
};
};
}