diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2021-02-06 23:32:22 +0100 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2021-02-06 23:32:22 +0100 |
commit | 6e80545d650391475f20e52b1a44ac9f4e240ce3 (patch) | |
tree | ec53553bec008d8283fb9ce9f1673fed161ba22b | |
parent | 4d5ed1d9b01ed1003c40d712d1f0abfc7b0ffe8d (diff) | |
download | Nix-6e80545d650391475f20e52b1a44ac9f4e240ce3.tar.gz Nix-6e80545d650391475f20e52b1a44ac9f4e240ce3.tar.zst Nix-6e80545d650391475f20e52b1a44ac9f4e240ce3.zip |
Add tools to environment
-rw-r--r-- | environments/immae-eu.nix | 6 | ||||
-rw-r--r-- | overlays/default.nix | 1 | ||||
-rw-r--r-- | overlays/procps-ng/default.nix | 5 |
3 files changed, 9 insertions, 3 deletions
diff --git a/environments/immae-eu.nix b/environments/immae-eu.nix index 147926b..a398359 100644 --- a/environments/immae-eu.nix +++ b/environments/immae-eu.nix | |||
@@ -17,7 +17,7 @@ let | |||
17 | boinctui | 17 | boinctui |
18 | 18 | ||
19 | # cryptocurrencies | 19 | # cryptocurrencies |
20 | cardano cardano-cli sia monero | 20 | monero |
21 | # failing xmr-stak | 21 | # failing xmr-stak |
22 | solc | 22 | solc |
23 | iota-cli-app | 23 | iota-cli-app |
@@ -105,7 +105,7 @@ let | |||
105 | keybase gnupg | 105 | keybase gnupg |
106 | 106 | ||
107 | # todolist/time management | 107 | # todolist/time management |
108 | taskwarrior vit timewarrior | 108 | taskwarrior vit timewarrior taskopen |
109 | bugwarrior | 109 | bugwarrior |
110 | 110 | ||
111 | # video/music | 111 | # video/music |
@@ -119,7 +119,7 @@ let | |||
119 | telnet bind.dnsutils httpie ngrep nmap p0f socat lsof psmisc | 119 | telnet bind.dnsutils httpie ngrep nmap p0f socat lsof psmisc |
120 | wget patchelf rename tmux (lib.meta.hiPrio nettools) | 120 | wget patchelf rename tmux (lib.meta.hiPrio nettools) |
121 | vlock mosh manpages openssl openssl.doc openssl.man | 121 | vlock mosh manpages openssl openssl.doc openssl.man |
122 | sshfs ncdu | 122 | sshfs ncdu procps-ng |
123 | 123 | ||
124 | # other tools | 124 | # other tools |
125 | pgloader s3cmd lftp jq cpulimit libxslt gandi-cli | 125 | pgloader s3cmd lftp jq cpulimit libxslt gandi-cli |
diff --git a/overlays/default.nix b/overlays/default.nix index a0af9bf..73c7744 100644 --- a/overlays/default.nix +++ b/overlays/default.nix | |||
@@ -23,6 +23,7 @@ | |||
23 | php-packages = import ./php-packages; | 23 | php-packages = import ./php-packages; |
24 | postfix = import ./postfix; | 24 | postfix = import ./postfix; |
25 | postgresql = import ./databases/postgresql; | 25 | postgresql = import ./databases/postgresql; |
26 | procps-ng = import ./procps-ng; | ||
26 | sc-im = import ./sc-im; | 27 | sc-im = import ./sc-im; |
27 | shaarli = import ./shaarli; | 28 | shaarli = import ./shaarli; |
28 | slrn = import ./slrn; | 29 | slrn = import ./slrn; |
diff --git a/overlays/procps-ng/default.nix b/overlays/procps-ng/default.nix new file mode 100644 index 0000000..2d43a11 --- /dev/null +++ b/overlays/procps-ng/default.nix | |||
@@ -0,0 +1,5 @@ | |||
1 | self: super: { | ||
2 | procps-ng = super.procps-ng.overrideAttrs(old: { | ||
3 | configureFlags = old.configureFlags ++ [ "--enable-watch8bit" ]; | ||
4 | }); | ||
5 | } | ||