nixos-config/modules/system/devices/disks/filesystems/default.nix

14 lines
233 B
Nix
Raw Normal View History

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;
};
services = {
btrfs.autoScrub.enable = true;
fstrim.enable = true;
};
}