NixOS-Config/modules/system/devices/filesystems/default.nix
2024-10-09 03:36:08 -04:00

8 lines
130 B
Nix

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