nixos/tests/systemd-networkd-ipv6-prefix-delegation: fix wrapper

The owner,group options are mandatory after #126289.

rnhmjoj c744ecb6 b53a5b91

+2
nixos/tests/systemd-networkd-ipv6-prefix-delegation.nix
···
# DO NOT COPY THIS TO PRODUCTION AS IS. Think about it at least twice.
# Everyone on the "isp" machine will be able to add routes to the kernel.
security.wrappers.add-dhcpd-lease = {
+
owner = "root";
+
group = "root";
source = pkgs.writeShellScript "add-dhcpd-lease" ''
exec ${pkgs.iproute2}/bin/ip -6 route replace "$1" via "$2"
'';