13 lines
202 B
Nix
13 lines
202 B
Nix
{
|
|
environment.globalPersistence = {
|
|
enable = true;
|
|
root = "/persist";
|
|
};
|
|
|
|
services.btrfs.autoScrub = {
|
|
enable = true;
|
|
interval = "weekly";
|
|
fileSystems = [ "/persist" ];
|
|
};
|
|
}
|