Commit 858b5c67 authored by jmir1's avatar jmir1 Committed by Bjørn Forsman
Browse files

nixos/ddclient: Fix ip command with usev4 and usev6

parent 686aecb4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -222,7 +222,7 @@ in
      wantedBy = [ "multi-user.target" ];
      after = [ "network.target" ];
      restartTriggers = lib.optional (cfg.configFile != null) cfg.configFile;
      path = lib.optional (lib.hasPrefix "if," cfg.use) pkgs.iproute2;
      path = lib.optional (lib.hasPrefix "if," cfg.use || lib.hasPrefix "if," cfg.usev4 || lib.hasPrefix "if," cfg.usev6) pkgs.iproute2;

      serviceConfig = {
        DynamicUser = true;