nixos-config/nixos/hosts/kanako-hkg0/disko-fs.nix

13 lines
202 B
Nix
Raw Normal View History

2024-12-13 01:08:04 +08:00
{
environment.globalPersistence = {
enable = true;
root = "/persist";
};
services.btrfs.autoScrub = {
enable = true;
interval = "weekly";
fileSystems = [ "/persist" ];
};
}