This commit is contained in:
mjallen18
2026-02-05 16:14:35 -06:00
parent 1ea8c8b6a9
commit f352ef1c05
4 changed files with 19 additions and 8 deletions

View File

@@ -21,6 +21,12 @@
'';
m1n1CustomLogo = ./NixOS.png;
supportedFilesystems = [ "apfs" ];
initrd = {
availableKernelModules = lib.mkForce [ ];
kernelModules = {
bcachefs = lib.mkForce false;
};
};
supportedFilesystems = lib.mkForce [ "apfs" ];
};
}

View File

@@ -13,6 +13,12 @@
# kernelPackages = kernelBundle.linuxPackages_rpi4;
# kernelPackages = pkgs.${namespace}.linuxPackages_cachyos-lto;
kernelPackages = pkgs.${namespace}.linuxPackages_rpi4-lts;
initrd = {
availableKernelModules = lib.mkForce [ ];
kernelModules = {
bcachefs = lib.mkForce false;
};
};
supportedFilesystems = lib.mkForce [ ];
};

View File

@@ -11,6 +11,12 @@
# firmwarePackage = pkgs.raspberrypifw;
# };
kernelPackages = pkgs.${namespace}.linuxPackages_rpi5-lts;
initrd = {
availableKernelModules = lib.mkForce [ ];
kernelModules = {
bcachefs = lib.mkForce false;
};
};
supportedFilesystems = lib.mkForce [ ];
};

View File

@@ -136,13 +136,6 @@
boot.supportedFilesystems = [ "bcachefs" ];
fileSystems."/etc".neededForBoot = true;
fileSystems."/data" = {
device = "/dev/disk/by-uuid/a85420cc-a026-4100-80d2-a999081d792a";
fsType = "bcachefs";
options = [
"nofail"
];
};
programs.seahorse.enable = false;
}