Unverified Commit cd6f4985 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

Merge pull request #301084 from LostAttractor/fix/v2raya

nixos/v2raya: fix nftables support
parents fd6da986 865f976d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ with lib;
        };

        wantedBy = [ "multi-user.target" ];
        path = with pkgs; [ iptables bash iproute2 ]; # required by v2rayA TProxy functionality
        path = with pkgs; [ iptables bash iproute2 ] ++ lib.optionals nftablesEnabled [ nftables ]; # required by v2rayA TProxy functionality
      };
  };