ROCKPro64-Server/system/devices/disks/filesystems/default.nix
2025-03-05 06:34:39 -05:00

12 lines
172 B
Nix

{ pkgs, ... }:
{
boot.supportedFilesystems = {
btrfs = true;
zfs = true;
};
services = {
btrfs.autoScrub.enable = true;
fstrim.enable = true;
};
}