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

68 lines
1.7 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";
port = mkOption {
default = 8200;
type = types.int;
description = ''
Port serving the web interface
'';
};
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 = ''
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 {
environment.systemPackages = [ pkgs.duplicati ];
systemd.services.duplicati = {
description = "Duplicati backup";
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
serviceConfig = {
2019-06-25 12:28:03 +00:00
User = cfg.user;
2018-04-07 19:23:04 +00:00
Group = "duplicati";
2019-06-27 12:15:21 +00:00
StateDirectory = "duplicati";
ExecStart = "${pkgs.duplicati}/bin/duplicati-server --webservice-interface=${cfg.interface} --webservice-port=${toString cfg.port} --server-datafolder=/var/lib/duplicati";
2018-04-07 19:23:04 +00:00
Restart = "on-failure";
};
};
2019-06-25 12:28:03 +00:00
users.users.duplicati = lib.optionalAttrs (cfg.user == "duplicati") {
2018-04-07 19:23:04 +00:00
uid = config.ids.uids.duplicati;
home = "/var/lib/duplicati";
createHome = true;
group = "duplicati";
};
users.groups.duplicati.gid = config.ids.gids.duplicati;
2018-04-07 19:23:04 +00:00
};
}