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

14 lines
189 B
Nix
Raw Normal View History

2024-12-20 14:03:04 -05:00
{ pkgs, ... }:
2024-10-09 03:36:08 -04:00
{
2024-12-20 16:53:43 -05:00
boot.supportedFilesystems = {
btrfs = true;
ntfs = true;
zfs = true;
};
services = {
btrfs.autoScrub.enable = true;
fstrim.enable = true;
};
}