summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2020-01-25 16:40:27 +0100
committerIsmaël Bouya <ismael.bouya@normalesup.org>2020-04-25 00:04:43 +0200
commitc69634936c66ccdeaabadda5d3bd42848d374778 (patch)
treef61bc55f0e6e0ef9a443adb23b7ad0e588894e5b
parentf339c9da752bf6d237b8295cd172c046c701ea9e (diff)
downloadNUR-c69634936c66ccdeaabadda5d3bd42848d374778.tar.gz
NUR-c69634936c66ccdeaabadda5d3bd42848d374778.tar.zst
NUR-c69634936c66ccdeaabadda5d3bd42848d374778.zip
Add some packages to environment
-rw-r--r--overlays/environments/immae-eu.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/overlays/environments/immae-eu.nix b/overlays/environments/immae-eu.nix
index b1a0a9b0..6287a97b 100644
--- a/overlays/environments/immae-eu.nix
+++ b/overlays/environments/immae-eu.nix
@@ -54,7 +54,7 @@ let
54 # monitoring 54 # monitoring
55 cnagios mtop pg_activity nagios-cli mtr 55 cnagios mtop pg_activity nagios-cli mtr
56 iftop htop iotop iperf bonfire 56 iftop htop iotop iperf bonfire
57 goaccess 57 goaccess tcpdump tshark tcpflow mitmproxy
58 # nagnu 58 # nagnu
59 59
60 # messaging/forums/news 60 # messaging/forums/news
@@ -94,7 +94,7 @@ let
94 94
95 # programming 95 # programming
96 pelican emacs26-nox ctags 96 pelican emacs26-nox ctags
97 wdiff 97 wdiff patch
98 98
99 # security 99 # security
100 keybase 100 keybase
@@ -109,6 +109,10 @@ let
109 skalibs execline s6 s6-dns s6-linux-utils s6-networking 109 skalibs execline s6 s6-dns s6-linux-utils s6-networking
110 s6-portable-utils 110 s6-portable-utils
111 111
112 # system tools
113 telnet bind.dnsutils httpie ngrep nmap p0f socat lsof psmisc
114 wget patchelf rename tmux (lib.meta.hiPrio nettools)
115
112 # other tools 116 # other tools
113 pgloader s3cmd lftp jq cpulimit libxslt gandi-cli 117 pgloader s3cmd lftp jq cpulimit libxslt gandi-cli
114 118
@@ -124,5 +128,6 @@ in
124 inherit paths; 128 inherit paths;
125 pathsToLink = [ "/bin" "/etc" "/include" "/lib" "/libexec" "/share"]; 129 pathsToLink = [ "/bin" "/etc" "/include" "/lib" "/libexec" "/share"];
126 extraOutputsToInstall = [ "bin" "man" "doc" "info" ]; 130 extraOutputsToInstall = [ "bin" "man" "doc" "info" ];
131 passthru = { packages = paths; };
127 }; 132 };
128} 133}