From 0be36da274d58ae5389b17e4e797301d8df5a6db Mon Sep 17 00:00:00 2001 From: ooks-io Date: Wed, 13 Nov 2024 12:52:16 +1100 Subject: [PATCH] home: add networking tools to console --- modules/home/console/tools/default.nix | 1 + modules/home/console/tools/networking.nix | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 modules/home/console/tools/networking.nix diff --git a/modules/home/console/tools/default.nix b/modules/home/console/tools/default.nix index b2f1a5f..c29bf86 100644 --- a/modules/home/console/tools/default.nix +++ b/modules/home/console/tools/default.nix @@ -2,6 +2,7 @@ imports = [ ./virtualization.nix ./bat.nix + ./networking.nix ./btop.nix ./git.nix ./fzf.nix diff --git a/modules/home/console/tools/networking.nix b/modules/home/console/tools/networking.nix new file mode 100644 index 0000000..b776e42 --- /dev/null +++ b/modules/home/console/tools/networking.nix @@ -0,0 +1,13 @@ +{pkgs, ...}: let + inherit (builtins) attrValues; +in { + home.packages = attrValues { + inherit + (pkgs) + traceroute + mtr + dig + nmap + ; + }; +}