13 lines
212 B
Nix
13 lines
212 B
Nix
{ lib, ... }:
|
|
{
|
|
boot.supportedFilesystems = {
|
|
ntfs = true;
|
|
zfs = lib.mkForce false;
|
|
};
|
|
|
|
services = {
|
|
btrfs.autoScrub.enable = true;
|
|
fstrim.enable = true;
|
|
};
|
|
}
|