nixos-config/modules/system/devices/disks/filesystems/default.nix
2024-11-13 09:43:47 -05:00

7 lines
130 B
Nix

{ lib, ... }:
{
boot.supportedFilesystems = {
ntfs = true;
zfs = lib.mkForce false;
};
}