universe/profiles/btrfs.nix

10 lines
186 B
Nix

{ pkgs, lib, ... }: {
environment.systemPackages = with pkgs; [
btrfs-progs
];
services.btrfs.autoScrub = {
enable = lib.mkDefault false;
interval = "monthly";
};
}