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.
25 lines
514 B
Nix
25 lines
514 B
Nix
{
|
||
...
|
||
}:
|
||
{
|
||
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"
|
||
];
|
||
};
|
||
};
|
||
};
|
||
}
|