Files
nix/hosts/common/configs/system/btrfs/default.nix
2025-02-21 09:19:44 +00:00

10 lines
156 B
Nix

{ pkgs, ... }:
{
services.btrfs.autoScrub = {
enable = true;
interval = "weekly";
};
environment.systemPackages = with pkgs; [ compsize ];
}