commit | f7fe6a0e5e84f68db44343c2c576618e3dbe82a7 | [log] [tgz] |
---|---|---|
author | Skyler Grey <skyler3665@gmail.com> | Sat Jul 02 13:19:33 2022 +0100 |
committer | Skyler Grey <skyler3665@gmail.com> | Sat Jul 02 13:22:10 2022 +0100 |
tree | 877ce2a814a41fe68ae5d5bf3be64bd769430020 | |
parent | fcf9a368fe65d8f48282626c2337dc2b1ceabb15 [diff] [blame] |
Update the ip alias to add the brief flag, and add an 'ipo' command to get the original
diff --git a/src/apps/personal/ip.nix b/src/apps/personal/ip.nix index 85dacc4..af345e9 100644 --- a/src/apps/personal/ip.nix +++ b/src/apps/personal/ip.nix
@@ -4,6 +4,7 @@ ]; home.shellAliases = { - ip = "${pkgs.iproute2}/bin/ip -c"; + ip = "${pkgs.iproute2}/bin/ip -c --brief"; + ipo = "${pkgs.iproute2}/bin/ip"; }; }