28 lines
681 B
Nix
28 lines
681 B
Nix
{ config, lib, pkgs, ... }:
|
|
let cfg = config.this.systems.zfs;
|
|
in with lib; {
|
|
options.this.systems.zfs.enable = mkEnableOption "zfs";
|
|
|
|
config = mkIf cfg.enable {
|
|
boot = {
|
|
supportedFilesystems = [ "zfs" ];
|
|
zfs = {
|
|
forceImportRoot = false;
|
|
forceImportAll = false;
|
|
};
|
|
# this was required for the initial setup of the zpool.
|
|
# see https://nixos.org/nixos/options.html#boot.zfs.forceimportroot
|
|
# kernelParams = ["zfs_force=1"];
|
|
};
|
|
|
|
services.zfs = {
|
|
autoScrub.enable = true;
|
|
# enable default auto-snapshots
|
|
autoSnapshot = {
|
|
enable = true;
|
|
flags = "-k -p --utc";
|
|
};
|
|
};
|
|
};
|
|
}
|