infrastructure/services/zfs.nix
2021-03-24 16:51:48 +00:00

8 lines
118 B
Nix

{ config, lib, pkgs, ... }:
{
services.zfs = {
autoScrub.enable = true;
autoSnapshot.enable = true;
};
}