Files
clan-core/nixosModules/bcachefs.nix
2024-09-24 12:52:53 +02:00

13 lines
269 B
Nix

{
lib,
pkgs,
...
}:
{
# If we also need zfs, we can use the unstable version as we otherwise don't have a new enough kernel version
boot.zfs.package = pkgs.zfsUnstable;
# Enable bcachefs support
boot.supportedFilesystems.bcachefs = lib.mkDefault true;
}