Add bcachefs support. Fix clan flash docu.
This commit is contained in:
12
nixosModules/bcachefs.nix
Normal file
12
nixosModules/bcachefs.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{ lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
# Enable bcachefs support
|
||||
boot.supportedFilesystems.zfs = lib.mkForce false;
|
||||
boot.kernelPackages = lib.mkOverride 0 pkgs.linuxPackages_latest;
|
||||
boot.supportedFilesystems.bcachefs = lib.mkDefault true;
|
||||
environment.systemPackages = with pkgs; [
|
||||
bcachefs-tools
|
||||
keyutils
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user