diff options
Diffstat (limited to '')
-rw-r--r-- | packages/myip.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/myip.nix b/packages/myip.nix index 59a02ee..d40e1fd 100644 --- a/packages/myip.nix +++ b/packages/myip.nix @@ -6,7 +6,7 @@ writeShellApplication { name = "myip"; - runtimeInputs = [dnsutils]; + runtimeInputs = [ dnsutils ]; text = '' dig -4 +short @resolver1.opendns.com myip.opendns.com A @@ -18,7 +18,7 @@ writeShellApplication { homepage = "https://git.azahi.cc/nixfiles"; license = licenses.wtfpl; platforms = platforms.unix; - maintainers = with maintainers; [azahi]; + maintainers = with maintainers; [ azahi ]; mainProgram = "myip"; }; } |