From 176958cd7505b92855efd0c0b1882555fc3427cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Thu, 6 Oct 2022 10:17:46 +0200 Subject: [PATCH] fix: iproute -> iproute2 --- configs/default.nix | 2 +- packages/scripts/default.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/default.nix b/configs/default.nix index 793f4e1..3451cb1 100644 --- a/configs/default.nix +++ b/configs/default.nix @@ -114,7 +114,7 @@ in { cat = "${pkgs.bat}/bin/bat --style=plain"; chromium-incognito = "chromium --user-data-dir=$(mktemp -d /tmp/chr.XXXXXX) --no-first-run --incognito"; cp = "cp --interactive"; - ip = "${pkgs.iproute}/bin/ip -c"; + ip = "${pkgs.iproute2}/bin/ip -c"; l = "ls --color=auto --time-style=long-iso --almost-all"; ls = "ls --color=auto --time-style=long-iso"; ll = "ls --color=auto --time-style=long-iso -l"; diff --git a/packages/scripts/default.nix b/packages/scripts/default.nix index a5f13a6..e5426dd 100644 --- a/packages/scripts/default.nix +++ b/packages/scripts/default.nix @@ -308,7 +308,7 @@ in }; default-gateway = pkgs.writers.writeDashBin "default-gateway" '' - ${pkgs.iproute}/bin/ip -json route | ${pkgs.jq}/bin/jq --raw-output '.[0].gateway' + ${pkgs.iproute2}/bin/ip -json route | ${pkgs.jq}/bin/jq --raw-output '.[0].gateway' ''; betacode =