14 lines
189 B
Nix
14 lines
189 B
Nix
{ pkgs, ... }:
|
|
{
|
|
boot.supportedFilesystems = {
|
|
btrfs = true;
|
|
ntfs = true;
|
|
zfs = true;
|
|
};
|
|
|
|
services = {
|
|
btrfs.autoScrub.enable = true;
|
|
fstrim.enable = true;
|
|
};
|
|
}
|