summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2014-06-24 17:23:16 -0500
committerWilliam A. Kennington III <william@wkennington.com>2014-08-13 15:08:08 -0500
commit56228e56147a9679994480a00cd813479ff392da (patch)
treec5f6794b15a73c8bcfde0fcdfc9cf2e5c374eff5 /nixos
parent05976a2b5a3d048fbcad1191f57800113788d700 (diff)
downloadnixlib-56228e56147a9679994480a00cd813479ff392da.tar
nixlib-56228e56147a9679994480a00cd813479ff392da.tar.gz
nixlib-56228e56147a9679994480a00cd813479ff392da.tar.bz2
nixlib-56228e56147a9679994480a00cd813479ff392da.tar.lz
nixlib-56228e56147a9679994480a00cd813479ff392da.tar.xz
nixlib-56228e56147a9679994480a00cd813479ff392da.tar.zst
nixlib-56228e56147a9679994480a00cd813479ff392da.zip
nixos/dhcp: Modernize ddns-update-style
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/networking/dhcpd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/dhcpd.nix b/nixos/modules/services/networking/dhcpd.nix
index e5e1c103c686..d796dcf70326 100644
--- a/nixos/modules/services/networking/dhcpd.nix
+++ b/nixos/modules/services/networking/dhcpd.nix
@@ -13,7 +13,7 @@ let
       default-lease-time 600;
       max-lease-time 7200;
       authoritative;
-      ddns-update-style ad-hoc;
+      ddns-update-style interim;
       log-facility local1; # see dhcpd.nix
 
       ${cfg.extraConfig}