2024-11-13 09:43:47 -05:00
|
|
|
{ lib, ... }:
|
2024-10-09 03:36:08 -04:00
|
|
|
{
|
2024-09-24 23:57:59 -04:00
|
|
|
boot.supportedFilesystems = {
|
|
|
|
ntfs = true;
|
2024-11-13 09:43:47 -05:00
|
|
|
zfs = lib.mkForce false;
|
2024-09-24 23:57:59 -04:00
|
|
|
};
|
2024-11-29 01:49:18 -05:00
|
|
|
|
|
|
|
services = {
|
|
|
|
btrfs.autoScrub.enable = true;
|
|
|
|
fstrim.enable = true;
|
|
|
|
};
|
2024-09-24 23:57:59 -04:00
|
|
|
}
|