about summary refs log tree commit diff
path: root/common.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2013-01-09 21:08:04 +0100
committeraszlig <aszlig@redmoonstudios.org>2013-01-09 21:08:04 +0100
commit2c6264ffc4da9dedb061ef7480696e8ae7f3802f (patch)
tree58cd44e5de091ea896b8d481f89aa5bb0ae5ae92 /common.nix
parent453f5b6fbc82764783c2e6005cbedccb2807d783 (diff)
common.nix: Add a few more system-wide packages.
I use things like compression tools, psmisc (esp. fuser), file, vlock and htop
as other users (well, "root" comes in mind ;-) as well, so it makes sense to
make it available system-wide.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'common.nix')
-rw-r--r--common.nix13
1 files changed, 10 insertions, 3 deletions
diff --git a/common.nix b/common.nix
index 75d9a0fd..cf226d3f 100644
--- a/common.nix
+++ b/common.nix
@@ -133,10 +133,17 @@
 
   environment.nix = pkgs.nixUnstable;
   environment.systemPackages = with pkgs; [
-    zsh
-    wget
-    vim_configurable
     cacert
+    file
+    htop
+    psmisc
+    unrar
+    unzip
+    vim_configurable
+    vlock
+    wget
+    xz
+    zsh
   ];
 
   nixpkgs.config = import ./nixpkgs/config.nix;