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:
+1
-1
@@ -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
@@ -5,7 +5,10 @@
|
||||
boot = {
|
||||
binfmt.emulatedSystems = [ "aarch64-linux" ];
|
||||
kernelPackages = pkgs.linuxPackages_latest;
|
||||
supportedFilesystems = [ "ntfs" ];
|
||||
supportedFilesystems = [
|
||||
"ntfs"
|
||||
"btrfs"
|
||||
];
|
||||
loader = {
|
||||
timeout = 15;
|
||||
systemd-boot = {
|
||||
|
||||
@@ -35,6 +35,10 @@
|
||||
device = "/dev/nvme0n1p1";
|
||||
fsType = "auto";
|
||||
};
|
||||
"/mnt/tmp" = {
|
||||
device = "/dev/disk/by-uuid/f456aeb0-a11a-4b84-86ae-402eff6d98bb";
|
||||
fsType = "btrfs";
|
||||
};
|
||||
};
|
||||
|
||||
swapDevices = [ ];
|
||||
|
||||
Reference in New Issue
Block a user