summaryrefslogtreecommitdiffstats
path: root/usecases/server/zfs.nix
blob: 58f4df8f41f79b81ff8c2ab6a84a6747fe1b55ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
inputs:

{ ... }:

{
  boot.supportedFilesystems = [ "zfs" ];

  services.zfs = {
    autoScrub.enable = true;

    # To be enabled on a dataset by dataset basis with:
    #
    # zfs set com.sun:auto-snapshot=true <pool>/<fs>
    #
    autoSnapshot.enable = true;
  };
}