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-15 22:18:29 -06:00
parent afbc6e4fef
commit 854aed86e0
8 changed files with 202 additions and 18 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ let
}:
let
nixpkgs = import channel { inherit system; };
overlays = all.overlays ++ [ top.proxmox.overlays.${system} ];
overlays = all.overlays;
in
channel.lib.nixosSystem {
inherit system;
+4 -1
View File
@@ -5,7 +5,10 @@
boot = {
binfmt.emulatedSystems = [ "aarch64-linux" ];
kernelPackages = pkgs.linuxPackages_latest;
supportedFilesystems = [ "ntfs" ];
supportedFilesystems = [
"ntfs"
"btrfs"
];
loader = {
timeout = 15;
systemd-boot = {
+4
View File
@@ -35,6 +35,10 @@
device = "/dev/nvme0n1p1";
fsType = "auto";
};
"/mnt/tmp" = {
device = "/dev/disk/by-uuid/f456aeb0-a11a-4b84-86ae-402eff6d98bb";
fsType = "btrfs";
};
};
swapDevices = [ ];