services.autotierfs.settings

NixOS option

The contents of the configuration file for autotier. See the autotier repo for supported values.

type: open submodule of attribute set of attribute set of section of an INI file (attrs of INI atom (null, bool, int, float or string))
Default
{ }
Example
{
  "/mnt/autotier" = {
    Global = {
      "Log Level" = 1;
      "Tier Period" = 1000;
      "Copy Buffer Size" = "1 MiB";
    };
    "Tier 1" = {
      Path = "/mnt/tier1";
      Quota = "30GiB";
    };
    "Tier 2" = {
      Path = "/mnt/tier2";
      Quota = "200GiB";
    };
  };
}
declared in: nixos/modules/services/autotierfs.nixView source on NixOS/nixpkgs →