nix-flake/modules/system/core/filesystem.nix
2026-02-07 13:44:48 +07:00

23 lines
No EOL
314 B
Nix

{ swapfile, ... }:
{
boot.supportedFilesystems = [
"ext4"
"btrfs"
"vfat"
"ntfs"
"exfat"
];
swapDevices =
if swapfile == 0 then
[ ]
else
[
{
device = "/swapfile";
size = swapfile;
}
];
services.fstrim.enable = true;
}