NixOS-Config/modules/system/devices/disks/filesystems/default.nix

13 lines
175 B
Nix

{ lib, ... }:
{
imports = [
./btrfs
./fstrim
];
boot.supportedFilesystems = {
ntfs = true;
zfs = lib.mkForce false;
};
}