2014-04-14 14:26:48 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2014-02-24 04:10:14 +00:00
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
with lib;
|
2014-02-24 04:10:14 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.services.tarsnap;
|
|
|
|
|
|
|
|
optionalNullStr = e: v: if e == null then "" else v;
|
|
|
|
|
2014-04-28 23:15:14 +00:00
|
|
|
configFile = cfg: ''
|
|
|
|
cachedir ${config.services.tarsnap.cachedir}
|
|
|
|
keyfile ${config.services.tarsnap.keyfile}
|
2014-02-24 04:10:14 +00:00
|
|
|
${optionalString cfg.nodump "nodump"}
|
|
|
|
${optionalString cfg.printStats "print-stats"}
|
2015-03-10 07:40:08 +00:00
|
|
|
${optionalString cfg.printStats "humanize-numbers"}
|
2014-02-24 04:10:14 +00:00
|
|
|
${optionalNullStr cfg.checkpointBytes "checkpoint-bytes "+cfg.checkpointBytes}
|
|
|
|
${optionalString cfg.aggressiveNetworking "aggressive-networking"}
|
|
|
|
${concatStringsSep "\n" (map (v: "exclude "+v) cfg.excludes)}
|
|
|
|
${concatStringsSep "\n" (map (v: "include "+v) cfg.includes)}
|
|
|
|
${optionalString cfg.lowmem "lowmem"}
|
|
|
|
${optionalString cfg.verylowmem "verylowmem"}
|
|
|
|
'';
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
services.tarsnap = {
|
|
|
|
enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
2015-03-10 07:40:08 +00:00
|
|
|
Enable periodic tarsnap backups.
|
2014-02-24 04:10:14 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
keyfile = mkOption {
|
2015-03-10 07:40:08 +00:00
|
|
|
type = types.str;
|
2014-02-24 04:10:14 +00:00
|
|
|
default = "/root/tarsnap.key";
|
|
|
|
description = ''
|
2015-03-10 07:40:08 +00:00
|
|
|
The keyfile which associates this machine with your tarsnap
|
|
|
|
account.
|
|
|
|
Create the keyfile with <command>tarsnap-keygen</command>.
|
|
|
|
|
|
|
|
The keyfile name should be given as a string and not a path, to
|
|
|
|
avoid the key being copied into the Nix store.
|
2014-02-24 04:10:14 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2014-04-28 23:15:14 +00:00
|
|
|
cachedir = mkOption {
|
2015-03-10 07:40:08 +00:00
|
|
|
type = types.nullOr types.path;
|
2014-04-28 23:15:14 +00:00
|
|
|
default = "/var/cache/tarsnap";
|
2014-02-24 04:10:14 +00:00
|
|
|
description = ''
|
2015-03-10 07:40:08 +00:00
|
|
|
The cache allows tarsnap to identify previously stored data
|
|
|
|
blocks, reducing archival time and bandwidth usage.
|
|
|
|
|
|
|
|
Should the cache become desynchronized or corrupted, tarsnap
|
|
|
|
will refuse to run until you manually rebuild the cache with
|
|
|
|
<command>tarsnap --fsck</command>.
|
|
|
|
|
|
|
|
Set to <literal>null</literal> to disable caching.
|
2014-02-24 04:10:14 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2015-03-10 07:40:08 +00:00
|
|
|
archives = mkOption {
|
2014-04-28 23:15:14 +00:00
|
|
|
type = types.attrsOf (types.submodule (
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
nodump = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
|
|
|
description = ''
|
2015-03-10 07:40:08 +00:00
|
|
|
Exclude files with the <literal>nodump</literal> flag.
|
2014-04-28 23:15:14 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
printStats = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
2015-03-10 07:40:08 +00:00
|
|
|
description = ''
|
|
|
|
Print global archive statistics upon completion.
|
|
|
|
The output is available via
|
|
|
|
<command>systemctl status tarsnap@archive-name</command>.
|
|
|
|
'';
|
2014-04-28 23:15:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
checkpointBytes = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
2015-03-10 07:40:08 +00:00
|
|
|
default = "1GB";
|
2014-04-28 23:15:14 +00:00
|
|
|
description = ''
|
2015-03-10 07:40:08 +00:00
|
|
|
Create a checkpoint every <literal>checkpointBytes</literal>
|
|
|
|
of uploaded data (optionally specified using an SI prefix).
|
|
|
|
|
|
|
|
1GB is the minimum value. A higher value is recommended,
|
|
|
|
as checkpointing is expensive.
|
|
|
|
|
|
|
|
Set to <literal>null</literal> to disable checkpointing.
|
2014-04-28 23:15:14 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
period = mkOption {
|
|
|
|
type = types.str;
|
2015-03-10 07:40:08 +00:00
|
|
|
default = "01:15";
|
|
|
|
example = "hourly";
|
2014-04-28 23:15:14 +00:00
|
|
|
description = ''
|
2015-03-10 07:40:08 +00:00
|
|
|
Create archive at this interval.
|
|
|
|
|
|
|
|
The format is described in
|
|
|
|
<citerefentry><refentrytitle>systemd.time</refentrytitle>
|
|
|
|
<manvolnum>7</manvolnum></citerefentry>.
|
2014-04-28 23:15:14 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
aggressiveNetworking = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
2015-03-10 07:40:08 +00:00
|
|
|
Upload data over multiple TCP connections, potentially
|
|
|
|
increasing tarsnap's bandwidth utilisation at the cost
|
|
|
|
of slowing down all other network traffic. Not
|
|
|
|
recommended unless TCP congestion is the dominant
|
|
|
|
limiting factor.
|
2014-04-28 23:15:14 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
directories = mkOption {
|
|
|
|
type = types.listOf types.path;
|
|
|
|
default = [];
|
|
|
|
description = "List of filesystem paths to archive.";
|
|
|
|
};
|
|
|
|
|
|
|
|
excludes = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [];
|
|
|
|
description = ''
|
2015-03-10 07:40:08 +00:00
|
|
|
Exclude files and directories matching these patterns.
|
2014-04-28 23:15:14 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
includes = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [];
|
|
|
|
description = ''
|
2015-03-10 07:40:08 +00:00
|
|
|
Include only files and directories matching these
|
|
|
|
patterns (the empty list includes everything).
|
2014-04-28 23:15:14 +00:00
|
|
|
|
2015-03-10 07:40:08 +00:00
|
|
|
Exclusions have precedence over inclusions.
|
2014-04-28 23:15:14 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
lowmem = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
2015-03-10 07:40:08 +00:00
|
|
|
Reduce memory consumption by not caching small files.
|
|
|
|
Possibly beneficial if the average file size is smaller
|
|
|
|
than 1 MB and the number of files is lower than the
|
|
|
|
total amount of RAM in KB.
|
2014-04-28 23:15:14 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
verylowmem = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
2015-03-10 07:40:08 +00:00
|
|
|
Reduce memory consumption by a factor of 2 beyond what
|
|
|
|
<literal>lowmem</literal> does, at the cost of significantly
|
|
|
|
slowing down the archiving process.
|
2014-04-28 23:15:14 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
));
|
|
|
|
|
|
|
|
default = {};
|
|
|
|
|
|
|
|
example = literalExample ''
|
|
|
|
{
|
|
|
|
nixos =
|
|
|
|
{ directories = [ "/home" "/root/ssl" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
gamedata =
|
|
|
|
{ directories = [ "/var/lib/minecraft "];
|
2015-03-10 07:40:08 +00:00
|
|
|
period = "*:30";
|
2014-04-28 23:15:14 +00:00
|
|
|
};
|
|
|
|
}
|
2014-02-24 04:10:14 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
description = ''
|
2015-03-10 07:40:08 +00:00
|
|
|
Tarsnap archive configurations. Each attribute names an archive
|
|
|
|
to be created at a given time interval, according to the options
|
|
|
|
associated with it. When uploading to the tarsnap server,
|
|
|
|
archive names are suffixed by a 1 second resolution timestamp.
|
|
|
|
|
|
|
|
For each member of the set is created a timer which triggers the
|
|
|
|
instanced <literal>tarsnap@</literal> service unit. You may use
|
|
|
|
<command>systemctl start tarsnap@archive-name</command> to
|
|
|
|
manually trigger creation of <literal>archive-name</literal> at
|
|
|
|
any time.
|
2014-02-24 04:10:14 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
assertions =
|
2014-04-28 23:15:14 +00:00
|
|
|
(mapAttrsToList (name: cfg:
|
|
|
|
{ assertion = cfg.directories != [];
|
2015-03-10 07:40:08 +00:00
|
|
|
message = "Must specify paths for tarsnap to back up";
|
|
|
|
}) cfg.archives) ++
|
2014-04-28 23:15:14 +00:00
|
|
|
(mapAttrsToList (name: cfg:
|
2015-03-10 07:40:08 +00:00
|
|
|
{ assertion = !(cfg.lowmem && cfg.verylowmem);
|
2014-02-24 04:10:14 +00:00
|
|
|
message = "You cannot set both lowmem and verylowmem";
|
2015-03-10 07:40:08 +00:00
|
|
|
}) cfg.archives);
|
2014-04-28 23:15:14 +00:00
|
|
|
|
|
|
|
systemd.services."tarsnap@" = {
|
2015-03-10 07:40:08 +00:00
|
|
|
description = "Tarsnap archive '%i'";
|
2014-04-28 23:15:14 +00:00
|
|
|
requires = [ "network.target" ];
|
2014-02-24 04:10:14 +00:00
|
|
|
|
|
|
|
path = [ pkgs.tarsnap pkgs.coreutils ];
|
2014-04-28 23:15:14 +00:00
|
|
|
scriptArgs = "%i";
|
2014-02-24 04:10:14 +00:00
|
|
|
script = ''
|
2015-03-10 07:40:08 +00:00
|
|
|
mkdir -p -m 0755 ${dirOf cfg.cachedir}
|
|
|
|
mkdir -p -m 0700 ${cfg.cachedir}
|
2014-04-28 23:15:14 +00:00
|
|
|
DIRS=`cat /etc/tarsnap/$1.dirs`
|
|
|
|
exec tarsnap --configfile /etc/tarsnap/$1.conf -c -f $1-$(date +"%Y%m%d%H%M%S") $DIRS
|
2014-02-24 04:10:14 +00:00
|
|
|
'';
|
2015-03-10 07:40:08 +00:00
|
|
|
|
|
|
|
serviceConfig = {
|
|
|
|
IOSchedulingClass = "idle";
|
|
|
|
NoNewPrivileges = "true";
|
|
|
|
CapabilityBoundingSet = "CAP_DAC_READ_SEARCH";
|
|
|
|
};
|
2014-02-24 04:10:14 +00:00
|
|
|
};
|
|
|
|
|
2015-03-10 07:40:08 +00:00
|
|
|
systemd.timers = mapAttrs' (name: cfg: nameValuePair "tarsnap@${name}"
|
|
|
|
{ timerConfig.OnCalendar = cfg.period;
|
|
|
|
wantedBy = [ "timers.target" ];
|
|
|
|
}) cfg.archives;
|
2014-04-28 23:15:14 +00:00
|
|
|
|
|
|
|
environment.etc =
|
|
|
|
(mapAttrs' (name: cfg: nameValuePair "tarsnap/${name}.conf"
|
|
|
|
{ text = configFile cfg;
|
2015-03-10 07:40:08 +00:00
|
|
|
}) cfg.archives) //
|
2014-04-28 23:15:14 +00:00
|
|
|
(mapAttrs' (name: cfg: nameValuePair "tarsnap/${name}.dirs"
|
|
|
|
{ text = concatStringsSep " " cfg.directories;
|
2015-03-10 07:40:08 +00:00
|
|
|
}) cfg.archives);
|
2014-02-24 04:10:14 +00:00
|
|
|
|
|
|
|
environment.systemPackages = [ pkgs.tarsnap ];
|
|
|
|
};
|
|
|
|
}
|