nixos-config/modules/system/devices/disks/filesystems/default.nix
2024-11-20 13:55:44 -05:00

12 lines
175 B
Nix

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