nix-flake/modules/system/core/filesystem.nix
2026-03-03 15:25:13 +07:00

10 lines
No EOL
139 B
Nix

{ ... }: {
services.fstrim.enable = true;
boot.supportedFilesystems = [
"ext4"
"btrfs"
"vfat"
"ntfs"
"exfat"
];
}