Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 500f1a94388f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8219b4a7ab2b
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jun 8, 2018

  1. Copy the full SHA
    20f6c5c View commit details

Commits on Jun 9, 2018

  1. Merge pull request #41057 from nyanloutre/duplicati/custom_options

    nixos/duplicati: add port and datafolder options
    peterhoeg authored Jun 9, 2018
    Copy the full SHA
    8219b4a View commit details
Showing with 18 additions and 1 deletion.
  1. +18 −1 nixos/modules/services/backup/duplicati.nix
19 changes: 18 additions & 1 deletion nixos/modules/services/backup/duplicati.nix
Original file line number Diff line number Diff line change
@@ -9,6 +9,23 @@ in
options = {
services.duplicati = {
enable = mkEnableOption "Duplicati";

port = mkOption {
default = 8200;
type = types.int;
description = ''
Port serving the web interface
'';
};

interface = mkOption {
default = "lo";
type = types.str;
description = ''
Listening interface for the web UI
Set it to "any" to listen on all available interfaces
'';
};
};
};

@@ -22,7 +39,7 @@ in
serviceConfig = {
User = "duplicati";
Group = "duplicati";
ExecStart = "${pkgs.duplicati}/bin/duplicati-server --webservice-interface=any --webservice-port=8200 --server-datafolder=/var/lib/duplicati";
ExecStart = "${pkgs.duplicati}/bin/duplicati-server --webservice-interface=${cfg.interface} --webservice-port=${toString cfg.port} --server-datafolder=/var/lib/duplicati";
Restart = "on-failure";
};
};