Files
nix-config/modules/nixos/hardware/btrfs/default.nix
mjallen18 defbd725dd secrets
2026-01-27 12:44:16 -06:00

20 lines
303 B
Nix

{
lib,
config,
namespace,
...
}:
{
services.btrfs = {
autoScrub.enable = lib.mkDefault (config.${namespace}.hardware.disko.filesystem == "btrfs");
autoScrub.fileSystems = lib.mkDefault [
"/nix"
"/root"
"/etc"
"/tmp"
"/var/log"
"/home"
];
};
}