try bcachefs again

This commit is contained in:
Christoph Cullmann 2025-05-04 15:52:53 +02:00
parent 8036f27d6b
commit c465a55f7a
No known key found for this signature in database

View file

@ -6,8 +6,10 @@
exampleIso = nixos.lib.nixosSystem {
system = "x86_64-linux";
modules = [
"${nixos}/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix"
"${nixos}/nixos/modules/installer/cd-dvd/installation-cd-minimal-new-kernel-no-zfs.nix"
({ config, pkgs, ... }: {
boot.supportedFilesystems = [ "bcachefs" ];
boot.kernelPackages = lib.mkOverride 0 pkgs.linuxPackages_latest;
networking.wireless.enable = false;
networking.networkmanager.enable = true;
})