blob: 0147bcd0b7da6777436a947ee736762bc354c308 (
plain)
1
2
3
4
5
6
7
8
9
10
|
{ writeShellApplication, dnsutils, ... }:
writeShellApplication {
name = "myip";
runtimeInputs = [ dnsutils ];
text = ''
dig -4 +short @resolver1.opendns.com myip.opendns.com A
dig -6 +short @resolver1.opendns.com myip.opendns.com AAAA
'';
}
|