2025-03-07 18:06:08 -05:00
|
|
|
{ config, lib, ... }:
|
2024-10-09 03:36:08 -04:00
|
|
|
{
|
2024-12-20 16:53:43 -05:00
|
|
|
boot.supportedFilesystems = {
|
|
|
|
btrfs = true;
|
|
|
|
ntfs = true;
|
2025-03-07 18:06:08 -05:00
|
|
|
zfs = lib.mkIf config.system.server.enable true;
|
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
|
|
|
}
|