curacao: Try deduplication
This commit is contained in:
parent
f04f8160db
commit
20dd333799
15
curacao/dedup/default.nix
Normal file
15
curacao/dedup/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ pkgs, lib, config, ... }:
|
||||
{
|
||||
config = {
|
||||
services.beesd.filesystems = {
|
||||
razmo = {
|
||||
spec = "/mnt/razmo";
|
||||
hashTableSizeMB = 512; # Recommended for 1 TiB, ×2 for compression, x2 for time
|
||||
};
|
||||
rapido = {
|
||||
spec = "/mnt/rapido";
|
||||
hashTableSizeMB = 128; # 4 times smaller disk, 4 times smaller hashtable?
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -5,6 +5,7 @@
|
|||
};
|
||||
imports = [
|
||||
./backup
|
||||
./dedup
|
||||
./disko.nix
|
||||
./features.nix
|
||||
./hardware.nix
|
||||
|
|
Loading…
Reference in a new issue