]> git.immae.eu Git - perso/Immae/Config/Nix.git/commitdiff
Add tools to environment
authorIsmaël Bouya <ismael.bouya@normalesup.org>
Sat, 6 Feb 2021 22:32:22 +0000 (23:32 +0100)
committerIsmaël Bouya <ismael.bouya@normalesup.org>
Sat, 6 Feb 2021 22:32:22 +0000 (23:32 +0100)
environments/immae-eu.nix
overlays/default.nix
overlays/procps-ng/default.nix [new file with mode: 0644]

index 147926b48b88e03bff706fb957d9f30ef184ec27..a398359761a13d319b087a0f2e686f58746e748e 100644 (file)
@@ -17,7 +17,7 @@ let
     boinctui
 
     # cryptocurrencies
-    cardano cardano-cli sia monero
+    monero
     # failing xmr-stak
     solc
     iota-cli-app
@@ -105,7 +105,7 @@ let
     keybase gnupg
 
     # todolist/time management
-    taskwarrior vit timewarrior
+    taskwarrior vit timewarrior taskopen
     bugwarrior
 
     # video/music
@@ -119,7 +119,7 @@ let
     telnet bind.dnsutils httpie ngrep nmap p0f socat lsof psmisc
     wget patchelf rename tmux (lib.meta.hiPrio nettools)
     vlock mosh manpages openssl openssl.doc openssl.man
-    sshfs ncdu
+    sshfs ncdu procps-ng
 
     # other tools
     pgloader s3cmd lftp jq cpulimit libxslt gandi-cli
index a0af9bf8e374f323741c096384e4679be26372c9..73c774469112bbd2a825a82cef0d7dc687ab425c 100644 (file)
@@ -23,6 +23,7 @@
   php-packages = import ./php-packages;
   postfix = import ./postfix;
   postgresql = import ./databases/postgresql;
+  procps-ng = import ./procps-ng;
   sc-im = import ./sc-im;
   shaarli = import ./shaarli;
   slrn = import ./slrn;
diff --git a/overlays/procps-ng/default.nix b/overlays/procps-ng/default.nix
new file mode 100644 (file)
index 0000000..2d43a11
--- /dev/null
@@ -0,0 +1,5 @@
+self: super: {
+  procps-ng = super.procps-ng.overrideAttrs(old: {
+    configureFlags = old.configureFlags ++ [ "--enable-watch8bit" ];
+  });
+}