services.zfs.expandOnBoot

NixOS option

After importing, expand each device in the specified pools. Set the value to the plain string “all” to expand all pools on boot: services.zfs.expandOnBoot = "all"; or set the value to a list of pools to expand the disks of specific pools: services.zfs.expandOnBoot = [ "tank" "dozer" ];

type: one of "disabled", "all" or list of string
Default
"disabled"
Example
[
  "tank"
  "dozer"
]
declared in: nixos/modules/tasks/filesystems/zfs.nixView source on NixOS/nixpkgs →