6 lines
152 B
Nix
6 lines
152 B
Nix
{pkgs}:
|
|
pkgs.writeShellScriptBin "what-is-my-ip" ''
|
|
${pkgs.curl}/bin/curl -s http://httpbin.org/get | \
|
|
${pkgs.jq}/bin/jq --raw-output .origin
|
|
''
|