grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / services / backup / rsnapshot.nix
blobaedb8acd60ac13877be52f06688e9286d7700423
1 { config, lib, pkgs, ... }:
2 let
3   cfg = config.services.rsnapshot;
4   cfgfile = pkgs.writeText "rsnapshot.conf" ''
5     config_version      1.2
6     cmd_cp      ${pkgs.coreutils}/bin/cp
7     cmd_rm      ${pkgs.coreutils}/bin/rm
8     cmd_rsync   ${pkgs.rsync}/bin/rsync
9     cmd_ssh     ${pkgs.openssh}/bin/ssh
10     cmd_logger  ${pkgs.inetutils}/bin/logger
11     cmd_du      ${pkgs.coreutils}/bin/du
12     cmd_rsnapshot_diff  ${pkgs.rsnapshot}/bin/rsnapshot-diff
13     lockfile    /run/rsnapshot.pid
14     link_dest   1
16     ${cfg.extraConfig}
17   '';
20   options = {
21     services.rsnapshot = {
22       enable = lib.mkEnableOption "rsnapshot backups";
23       enableManualRsnapshot = lib.mkOption {
24         description = "Whether to enable manual usage of the rsnapshot command with this module.";
25         default = true;
26         type = lib.types.bool;
27       };
29       extraConfig = lib.mkOption {
30         default = "";
31         example = ''
32           retains       hourly  24
33           retain        daily   365
34           backup        /home/  localhost/
35         '';
36         type = lib.types.lines;
37         description = ''
38           rsnapshot configuration option in addition to the defaults from
39           rsnapshot and this module.
41           Note that tabs are required to separate option arguments, and
42           directory names require trailing slashes.
44           The "extra" in the option name might be a little misleading right
45           now, as it is required to get a functional configuration.
46         '';
47       };
49       cronIntervals = lib.mkOption {
50         default = {};
51         example = { hourly = "0 * * * *"; daily = "50 21 * * *"; };
52         type = lib.types.attrsOf lib.types.str;
53         description = ''
54           Periodicity at which intervals should be run by cron.
55           Note that the intervals also have to exist in configuration
56           as retain options.
57         '';
58       };
59     };
60   };
62   config = lib.mkIf cfg.enable (lib.mkMerge [
63     {
64       services.cron.systemCronJobs =
65         lib.mapAttrsToList (interval: time: "${time} root ${pkgs.rsnapshot}/bin/rsnapshot -c ${cfgfile} ${interval}") cfg.cronIntervals;
66     }
67     (lib.mkIf cfg.enableManualRsnapshot {
68       environment.systemPackages = [ pkgs.rsnapshot ];
69       environment.etc."rsnapshot.conf".source = cfgfile;
70     })
71   ]);