mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
14 lines
209 B
Nix
14 lines
209 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
services.zfs = {
|
|
autoScrub.enable = true;
|
|
autoSnapshot = {
|
|
enable = true;
|
|
frequent = 1;
|
|
daily = 7;
|
|
weekly = 1;
|
|
monthly = 1;
|
|
};
|
|
};
|
|
}
|