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

13 lines
212 B
Nix
Raw Normal View History

2024-11-13 09:43:47 -05:00
{ lib, ... }:
2024-10-09 03:36:08 -04:00
{
boot.supportedFilesystems = {
ntfs = true;
2024-11-13 09:43:47 -05:00
zfs = lib.mkForce false;
};
services = {
btrfs.autoScrub.enable = true;
fstrim.enable = true;
};
}