nixpkgs/nixos/modules/services/backup/duplicati.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

88 lines
2.3 KiB
Nix
Raw Normal View History

2018-04-07 19:23:04 +00:00
{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.services.duplicati;
in
{
options = {
services.duplicati = {
enable = mkEnableOption "Duplicati";
package = mkPackageOption pkgs "duplicati" { };
2023-08-18 11:49:18 +00:00
port = mkOption {
default = 8200;
type = types.port;
description = ''
Port serving the web interface
'';
};
dataDir = mkOption {
type = types.str;
default = "/var/lib/duplicati";
description = ''
The directory where Duplicati stores its data files.
::: {.note}
If left as the default value this directory will automatically be created
before the Duplicati server starts, otherwise you are responsible for ensuring
the directory exists with appropriate ownership and permissions.
:::
'';
};
interface = mkOption {
default = "127.0.0.1";
type = types.str;
description = ''
Listening interface for the web UI
Set it to "any" to listen on all available interfaces
'';
};
2019-06-25 12:28:03 +00:00
user = mkOption {
default = "duplicati";
type = types.str;
description = ''
2019-06-25 12:28:03 +00:00
Duplicati runs as it's own user. It will only be able to backup world-readable files.
Run as root with special care.
'';
};
2018-04-07 19:23:04 +00:00
};
};
config = mkIf cfg.enable {
2023-08-18 11:49:18 +00:00
environment.systemPackages = [ cfg.package ];
2018-04-07 19:23:04 +00:00
systemd.services.duplicati = {
description = "Duplicati backup";
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
serviceConfig = mkMerge [
{
User = cfg.user;
Group = "duplicati";
2023-08-18 11:49:18 +00:00
ExecStart = "${cfg.package}/bin/duplicati-server --webservice-interface=${cfg.interface} --webservice-port=${toString cfg.port} --server-datafolder=${cfg.dataDir}";
Restart = "on-failure";
}
(mkIf (cfg.dataDir == "/var/lib/duplicati") {
StateDirectory = "duplicati";
})
];
2018-04-07 19:23:04 +00:00
};
users.users = lib.optionalAttrs (cfg.user == "duplicati") {
duplicati = {
uid = config.ids.uids.duplicati;
home = cfg.dataDir;
group = "duplicati";
};
2018-04-07 19:23:04 +00:00
};
users.groups.duplicati.gid = config.ids.gids.duplicati;
2018-04-07 19:23:04 +00:00
};
}