home: add networking tools to console

This commit is contained in:
ooks-io 2024-11-13 12:52:16 +11:00
parent e84922c5f9
commit 0be36da274
2 changed files with 14 additions and 0 deletions

View file

@ -2,6 +2,7 @@
imports = [ imports = [
./virtualization.nix ./virtualization.nix
./bat.nix ./bat.nix
./networking.nix
./btop.nix ./btop.nix
./git.nix ./git.nix
./fzf.nix ./fzf.nix

View file

@ -0,0 +1,13 @@
{pkgs, ...}: let
inherit (builtins) attrValues;
in {
home.packages = attrValues {
inherit
(pkgs)
traceroute
mtr
dig
nmap
;
};
}