Files
nixos-config/modules/home/scripts/commands/icanhazip.nix
2024-11-02 17:14:19 -04:00

7 lines
204 B
Nix

{ pkgs }:
pkgs.writeShellScriptBin "icanhazip" ''
echo "Public IP: $(curl -s icanhazip.com -4)"
ip route | awk '/default/ {print "Default Gateway: " $3} /src/ {print "Local IP: " $9}' | head -n 2
''