Files
nix-config/systems/x86_64-linux/desktop/services/btrfs/default.nix
mjallen18 3d213c8769 nixfmt
2025-07-24 11:06:08 -05:00

14 lines
209 B
Nix

{ lib, ... }:
{
services.btrfs = {
autoScrub.enable = lib.mkDefault true;
autoScrub.fileSystems = lib.mkDefault [
"/nix"
"/root"
"/etc"
"/var/log"
"/home"
];
};
}