summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/networking
diff options
context:
space:
mode:
authorLasse Blaauwbroek <LasseBlaauwbroek@users.noreply.github.com>2018-04-18 01:00:25 +0200
committerMatthias Beyer <mail@beyermatthias.de>2019-06-13 18:25:59 +0200
commit0515392ed39e6486302b79ee8483db83c8ef3375 (patch)
tree76c65bb2ec01e78ed71605fc8bacd13cacceeea6 /nixos/modules/services/networking
parentb6e10d79e96487b412ae8a8db5d1bff1b2b58646 (diff)
Fix ddclient extraConfig
The the extraConfig variable is added below the domain variable in the ddclient config file. The domain variable should always be last. (cherry picked from commit ba0ba6dc7934a6b4cc5d4090739a3a1c839afe67)
Diffstat (limited to 'nixos/modules/services/networking')
-rw-r--r--nixos/modules/services/networking/ddclient.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/ddclient.nix b/nixos/modules/services/networking/ddclient.nix
index 9a2e13e9553c..04ce5ca3a874 100644
--- a/nixos/modules/services/networking/ddclient.nix
+++ b/nixos/modules/services/networking/ddclient.nix
@@ -20,8 +20,8 @@ let
wildcard=YES
quiet=${boolToStr cfg.quiet}
verbose=${boolToStr cfg.verbose}
- ${lib.concatStringsSep "," cfg.domains}
${cfg.extraConfig}
+ ${lib.concatStringsSep "," cfg.domains}
'';
in