summaryrefslogtreecommitdiff
path: root/home/networking-utils
diff options
context:
space:
mode:
authorLinnnus <[email protected]>2023-11-21 17:04:46 +0100
committerLinnnus <[email protected]>2023-11-21 17:05:44 +0100
commit977534211effc27304b61db0e21d80d4d2539f58 (patch)
treebba1ba14876500ad1ef02207d218c12bdc79baeb /home/networking-utils
parente2cc47f4194b2ba43f407ab9d7e4232b567c21f2 (diff)
home: Add networking utilites
Diffstat (limited to 'home/networking-utils')
-rw-r--r--home/networking-utils/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/home/networking-utils/default.nix b/home/networking-utils/default.nix
new file mode 100644
index 0000000..70802a9
--- /dev/null
+++ b/home/networking-utils/default.nix
@@ -0,0 +1,10 @@
+# This module adds some networking utilities to my home managed environment.
+{pkgs, ...}: {
+ home.packages = with pkgs;
+ [
+ nmap
+ inetutils
+ socat
+ ]
+ ++ lib.optional (!pkgs.stdenv.isDarwin) netcat;
+}