Skip to content

Commit

Permalink
nixos/ddclient: Fix ip command with usev4 and usev6
Browse files Browse the repository at this point in the history
  • Loading branch information
jmir1 committed Oct 18, 2024
1 parent c6a5917 commit 2a7dec9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/modules/services/networking/ddclient.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 2a7dec9

Please sign in to comment.