home: add networking tools to console
This commit is contained in:
parent
e84922c5f9
commit
0be36da274
2 changed files with 14 additions and 0 deletions
|
|
@ -2,6 +2,7 @@
|
|||
imports = [
|
||||
./virtualization.nix
|
||||
./bat.nix
|
||||
./networking.nix
|
||||
./btop.nix
|
||||
./git.nix
|
||||
./fzf.nix
|
||||
|
|
|
|||
13
modules/home/console/tools/networking.nix
Normal file
13
modules/home/console/tools/networking.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{pkgs, ...}: let
|
||||
inherit (builtins) attrValues;
|
||||
in {
|
||||
home.packages = attrValues {
|
||||
inherit
|
||||
(pkgs)
|
||||
traceroute
|
||||
mtr
|
||||
dig
|
||||
nmap
|
||||
;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue