13 lines
191 B
Nix
13 lines
191 B
Nix
{ lib, ... }:
|
|
{
|
|
boot = {
|
|
supportedFilesystems.ntfs = true;
|
|
zfs.package = pkgs.zfs_unstable;
|
|
};
|
|
|
|
services = {
|
|
btrfs.autoScrub.enable = true;
|
|
fstrim.enable = true;
|
|
};
|
|
}
|