2019-10-27 03:37:30 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
|
|
cfg = config.services.sanoid;
|
|
|
|
|
2024-08-28 19:18:54 +00:00
|
|
|
datasetSettingsType = with lib.types;
|
2019-10-27 03:37:30 +00:00
|
|
|
(attrsOf (nullOr (oneOf [ str int bool (listOf str) ]))) // {
|
|
|
|
description = "dataset/template options";
|
|
|
|
};
|
|
|
|
|
|
|
|
commonOptions = {
|
2024-08-28 19:18:54 +00:00
|
|
|
hourly = lib.mkOption {
|
2024-04-13 12:54:15 +00:00
|
|
|
description = "Number of hourly snapshots.";
|
2024-08-28 19:18:54 +00:00
|
|
|
type = with lib.types; nullOr ints.unsigned;
|
2020-03-31 16:09:59 +00:00
|
|
|
default = null;
|
2019-10-27 03:37:30 +00:00
|
|
|
};
|
|
|
|
|
2024-08-28 19:18:54 +00:00
|
|
|
daily = lib.mkOption {
|
2024-04-13 12:54:15 +00:00
|
|
|
description = "Number of daily snapshots.";
|
2024-08-28 19:18:54 +00:00
|
|
|
type = with lib.types; nullOr ints.unsigned;
|
2020-03-31 16:09:59 +00:00
|
|
|
default = null;
|
2019-10-27 03:37:30 +00:00
|
|
|
};
|
|
|
|
|
2024-08-28 19:18:54 +00:00
|
|
|
monthly = lib.mkOption {
|
2024-04-13 12:54:15 +00:00
|
|
|
description = "Number of monthly snapshots.";
|
2024-08-28 19:18:54 +00:00
|
|
|
type = with lib.types; nullOr ints.unsigned;
|
2020-03-31 16:09:59 +00:00
|
|
|
default = null;
|
2019-10-27 03:37:30 +00:00
|
|
|
};
|
|
|
|
|
2024-08-28 19:18:54 +00:00
|
|
|
yearly = lib.mkOption {
|
2024-04-13 12:54:15 +00:00
|
|
|
description = "Number of yearly snapshots.";
|
2024-08-28 19:18:54 +00:00
|
|
|
type = with lib.types; nullOr ints.unsigned;
|
2020-03-31 16:09:59 +00:00
|
|
|
default = null;
|
2019-10-27 03:37:30 +00:00
|
|
|
};
|
|
|
|
|
2024-08-28 19:18:54 +00:00
|
|
|
autoprune = lib.mkOption {
|
2024-04-13 12:54:15 +00:00
|
|
|
description = "Whether to automatically prune old snapshots.";
|
2024-08-28 19:18:54 +00:00
|
|
|
type = with lib.types; nullOr bool;
|
2020-03-31 16:09:59 +00:00
|
|
|
default = null;
|
2019-10-27 03:37:30 +00:00
|
|
|
};
|
|
|
|
|
2024-08-28 19:18:54 +00:00
|
|
|
autosnap = lib.mkOption {
|
2024-04-13 12:54:15 +00:00
|
|
|
description = "Whether to automatically take snapshots.";
|
2024-08-28 19:18:54 +00:00
|
|
|
type = with lib.types; nullOr bool;
|
2020-03-31 16:09:59 +00:00
|
|
|
default = null;
|
2019-10-27 03:37:30 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-03-31 16:09:59 +00:00
|
|
|
datasetOptions = rec {
|
2024-08-28 19:18:54 +00:00
|
|
|
use_template = lib.mkOption {
|
2024-04-13 12:54:15 +00:00
|
|
|
description = "Names of the templates to use for this dataset.";
|
2024-08-28 19:18:54 +00:00
|
|
|
type = lib.types.listOf (lib.types.str // {
|
|
|
|
check = (lib.types.enum (lib.attrNames cfg.templates)).check;
|
2021-11-18 23:26:27 +00:00
|
|
|
description = "configured template name";
|
|
|
|
});
|
2021-07-25 16:31:42 +00:00
|
|
|
default = [ ];
|
2019-10-27 03:37:30 +00:00
|
|
|
};
|
2020-03-31 16:09:59 +00:00
|
|
|
useTemplate = use_template;
|
2019-10-27 03:37:30 +00:00
|
|
|
|
2024-08-28 19:18:54 +00:00
|
|
|
recursive = lib.mkOption {
|
2024-04-13 12:54:15 +00:00
|
|
|
description = ''
|
2021-09-02 11:35:30 +00:00
|
|
|
Whether to recursively snapshot dataset children.
|
2022-07-28 21:19:15 +00:00
|
|
|
You can also set this to `"zfs"` to handle datasets
|
2021-09-02 11:35:30 +00:00
|
|
|
recursively in an atomic way without the possibility to
|
|
|
|
override settings for child datasets.
|
|
|
|
'';
|
2024-08-28 19:18:54 +00:00
|
|
|
type = with lib.types; oneOf [ bool (enum [ "zfs" ]) ];
|
2019-10-27 03:37:30 +00:00
|
|
|
default = false;
|
|
|
|
};
|
|
|
|
|
2024-08-28 19:18:54 +00:00
|
|
|
process_children_only = lib.mkOption {
|
2024-04-13 12:54:15 +00:00
|
|
|
description = "Whether to only snapshot child datasets if recursing.";
|
2024-08-28 19:18:54 +00:00
|
|
|
type = lib.types.bool;
|
2019-10-27 03:37:30 +00:00
|
|
|
default = false;
|
|
|
|
};
|
2020-03-31 16:09:59 +00:00
|
|
|
processChildrenOnly = process_children_only;
|
2019-10-27 03:37:30 +00:00
|
|
|
};
|
|
|
|
|
2021-07-25 08:00:37 +00:00
|
|
|
# Extract unique dataset names
|
2024-08-28 19:18:54 +00:00
|
|
|
datasets = lib.unique (lib.attrNames cfg.datasets);
|
2019-10-27 03:37:30 +00:00
|
|
|
|
2021-07-25 16:27:36 +00:00
|
|
|
# Function to build "zfs allow" and "zfs unallow" commands for the
|
|
|
|
# filesystems we've delegated permissions to.
|
|
|
|
buildAllowCommand = zfsAction: permissions: dataset: lib.escapeShellArgs [
|
|
|
|
# Here we explicitly use the booted system to guarantee the stable API needed by ZFS
|
|
|
|
"-+/run/booted-system/sw/bin/zfs"
|
|
|
|
zfsAction
|
|
|
|
"sanoid"
|
2024-08-28 19:18:54 +00:00
|
|
|
(lib.concatStringsSep "," permissions)
|
2021-07-25 16:27:36 +00:00
|
|
|
dataset
|
|
|
|
];
|
|
|
|
|
2021-07-25 16:31:42 +00:00
|
|
|
configFile =
|
|
|
|
let
|
|
|
|
mkValueString = v:
|
2024-08-28 19:18:54 +00:00
|
|
|
if lib.isList v then lib.concatStringsSep "," v
|
|
|
|
else lib.generators.mkValueStringDefault { } v;
|
2021-07-25 16:31:42 +00:00
|
|
|
|
|
|
|
mkKeyValue = k: v:
|
|
|
|
if v == null then ""
|
|
|
|
else if k == "processChildrenOnly" then ""
|
|
|
|
else if k == "useTemplate" then ""
|
2024-08-28 19:18:54 +00:00
|
|
|
else lib.generators.mkKeyValueDefault { inherit mkValueString; } "=" k v;
|
2021-07-25 16:31:42 +00:00
|
|
|
in
|
2024-08-28 19:18:54 +00:00
|
|
|
lib.generators.toINI { inherit mkKeyValue; } cfg.settings;
|
2021-07-25 16:31:42 +00:00
|
|
|
|
|
|
|
in
|
|
|
|
{
|
|
|
|
|
|
|
|
# Interface
|
|
|
|
|
|
|
|
options.services.sanoid = {
|
2024-08-28 19:18:54 +00:00
|
|
|
enable = lib.mkEnableOption "Sanoid ZFS snapshotting service";
|
2021-07-25 16:31:42 +00:00
|
|
|
|
2023-11-30 18:03:14 +00:00
|
|
|
package = lib.mkPackageOption pkgs "sanoid" {};
|
2023-03-19 05:34:01 +00:00
|
|
|
|
2024-08-28 19:18:54 +00:00
|
|
|
interval = lib.mkOption {
|
|
|
|
type = lib.types.str;
|
2021-07-25 16:31:42 +00:00
|
|
|
default = "hourly";
|
|
|
|
example = "daily";
|
2024-04-13 12:54:15 +00:00
|
|
|
description = ''
|
2021-07-25 16:31:42 +00:00
|
|
|
Run sanoid at this interval. The default is to run hourly.
|
|
|
|
|
|
|
|
The format is described in
|
2022-08-05 17:39:00 +00:00
|
|
|
{manpage}`systemd.time(7)`.
|
2021-07-25 16:31:42 +00:00
|
|
|
'';
|
|
|
|
};
|
2019-10-27 03:37:30 +00:00
|
|
|
|
2024-08-28 19:18:54 +00:00
|
|
|
datasets = lib.mkOption {
|
|
|
|
type = lib.types.attrsOf (lib.types.submodule ({ config, options, ... }: {
|
2021-07-25 16:31:42 +00:00
|
|
|
freeformType = datasetSettingsType;
|
|
|
|
options = commonOptions // datasetOptions;
|
2024-08-28 19:18:54 +00:00
|
|
|
config.use_template = lib.modules.mkAliasAndWrapDefsWithPriority lib.id (options.useTemplate or { });
|
|
|
|
config.process_children_only = lib.modules.mkAliasAndWrapDefsWithPriority lib.id (options.processChildrenOnly or { });
|
2021-07-25 16:31:42 +00:00
|
|
|
}));
|
|
|
|
default = { };
|
2024-04-13 12:54:15 +00:00
|
|
|
description = "Datasets to snapshot.";
|
2021-07-25 16:31:42 +00:00
|
|
|
};
|
2019-10-27 03:37:30 +00:00
|
|
|
|
2024-08-28 19:18:54 +00:00
|
|
|
templates = lib.mkOption {
|
|
|
|
type = lib.types.attrsOf (lib.types.submodule {
|
2021-07-25 16:31:42 +00:00
|
|
|
freeformType = datasetSettingsType;
|
|
|
|
options = commonOptions;
|
|
|
|
});
|
|
|
|
default = { };
|
2024-04-13 12:54:15 +00:00
|
|
|
description = "Templates for datasets.";
|
2021-07-25 16:31:42 +00:00
|
|
|
};
|
2019-10-27 03:37:30 +00:00
|
|
|
|
2024-08-28 19:18:54 +00:00
|
|
|
settings = lib.mkOption {
|
|
|
|
type = lib.types.attrsOf datasetSettingsType;
|
2024-04-13 12:54:15 +00:00
|
|
|
description = ''
|
2021-07-25 16:31:42 +00:00
|
|
|
Free-form settings written directly to the config file. See
|
2022-07-28 21:19:15 +00:00
|
|
|
<https://github.com/jimsalterjrs/sanoid/blob/master/sanoid.defaults.conf>
|
2021-07-25 16:31:42 +00:00
|
|
|
for allowed values.
|
|
|
|
'';
|
|
|
|
};
|
2019-10-27 03:37:30 +00:00
|
|
|
|
2024-08-28 19:18:54 +00:00
|
|
|
extraArgs = lib.mkOption {
|
|
|
|
type = lib.types.listOf lib.types.str;
|
2021-07-25 16:31:42 +00:00
|
|
|
default = [ ];
|
|
|
|
example = [ "--verbose" "--readonly" "--debug" ];
|
2024-04-13 12:54:15 +00:00
|
|
|
description = ''
|
2021-07-25 16:31:42 +00:00
|
|
|
Extra arguments to pass to sanoid. See
|
2022-07-28 21:19:15 +00:00
|
|
|
<https://github.com/jimsalterjrs/sanoid/#sanoid-command-line-options>
|
2021-07-25 16:31:42 +00:00
|
|
|
for allowed options.
|
|
|
|
'';
|
2019-10-27 03:37:30 +00:00
|
|
|
};
|
2021-07-25 16:31:42 +00:00
|
|
|
};
|
2019-10-27 03:37:30 +00:00
|
|
|
|
2021-07-25 16:31:42 +00:00
|
|
|
# Implementation
|
|
|
|
|
2024-08-28 19:18:54 +00:00
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
services.sanoid.settings = lib.mkMerge [
|
|
|
|
(lib.mapAttrs' (d: v: lib.nameValuePair ("template_" + d) v) cfg.templates)
|
|
|
|
(lib.mapAttrs (d: v: v) cfg.datasets)
|
2021-07-25 16:31:42 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
systemd.services.sanoid = {
|
|
|
|
description = "Sanoid snapshot service";
|
|
|
|
serviceConfig = {
|
|
|
|
ExecStartPre = (map (buildAllowCommand "allow" [ "snapshot" "mount" "destroy" ]) datasets);
|
|
|
|
ExecStopPost = (map (buildAllowCommand "unallow" [ "snapshot" "mount" "destroy" ]) datasets);
|
|
|
|
ExecStart = lib.escapeShellArgs ([
|
2023-03-19 05:34:01 +00:00
|
|
|
"${cfg.package}/bin/sanoid"
|
2021-07-25 16:31:42 +00:00
|
|
|
"--cron"
|
|
|
|
"--configdir"
|
|
|
|
(pkgs.writeTextDir "sanoid.conf" configFile)
|
|
|
|
] ++ cfg.extraArgs);
|
|
|
|
User = "sanoid";
|
|
|
|
Group = "sanoid";
|
|
|
|
DynamicUser = true;
|
|
|
|
RuntimeDirectory = "sanoid";
|
|
|
|
CacheDirectory = "sanoid";
|
2019-10-27 03:37:30 +00:00
|
|
|
};
|
2021-07-25 16:31:42 +00:00
|
|
|
# Prevents missing snapshots during DST changes
|
|
|
|
environment.TZ = "UTC";
|
|
|
|
after = [ "zfs.target" ];
|
|
|
|
startAt = cfg.interval;
|
2019-10-27 03:37:30 +00:00
|
|
|
};
|
2021-07-25 16:31:42 +00:00
|
|
|
};
|
2019-10-27 03:37:30 +00:00
|
|
|
|
2024-08-28 19:18:54 +00:00
|
|
|
meta.maintainers = with lib.maintainers; [ lopsided98 ];
|
2021-07-25 16:31:42 +00:00
|
|
|
}
|