dotfiles/curacao/dedup/default.nix
Geoffrey “Frogeye” Preud'homme 9c7919b87b beesd: Reduce load targets
I've been turning off the thing all the time since it was really showing
it was doing thing, especially when doing some dev stuff.
Maybe best only run this when I'm not around the computer.
2025-05-01 22:48:05 +02:00

25 lines
514 B
Nix
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
...
}:
{
config = {
services.beesd.filesystems = {
razmo = {
spec = "/mnt/razmo";
hashTableSizeMB = 512; # Recommended for 1 TiB, ×2 for compression, x2 for time
extraOptions = [
"--loadavg-target"
"2"
];
};
rapido = {
spec = "/mnt/rapido";
hashTableSizeMB = 128; # 4 times smaller disk, 4 times smaller hashtable?
extraOptions = [
"--loadavg-target"
"1"
];
};
};
};
}