about summary refs log tree commit diff
path: root/nixpkgs
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2013-01-09 21:12:12 +0100
committeraszlig <aszlig@redmoonstudios.org>2013-01-09 21:12:12 +0100
commit7f2e3955a124e5f645537c5583b1a2f6bd321238 (patch)
tree8dc5f55f30f191da8b1a1d06a2ba994415e251cd /nixpkgs
parent62a211e4bb61d47356d9c00357e8b8eaa2b11dc1 (diff)
nixpkgs: Move package list into ../collections.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'nixpkgs')
-rw-r--r--nixpkgs/config.nix81
1 files changed, 2 insertions, 79 deletions
diff --git a/nixpkgs/config.nix b/nixpkgs/config.nix
index 4957c483..b3134053 100644
--- a/nixpkgs/config.nix
+++ b/nixpkgs/config.nix
@@ -5,85 +5,8 @@ let
       inherit paths;
       ignoreCollisions = true;
     };
-  in pkgs.lib.mapAttrsToList genAszligEnv {
-    haskell = with pkgs.haskellPackages; [
-      ghc cabalInstall hlint
-      darcs
-      diagrams
-      yesod yesodStatic yesodDefault yesodTest
-      hjsmin persistentSqlite
-    ];
-
-    python = with pkgs.pythonPackages; [
-      pkgs.python3
-      pkgs.python
-      pep8
-      polib
-    ];
-
-    shell = with pkgs; [
-      zsh dash
-      taskwarrior
-      screen
-      htop
-      bc
-      lftp
-      mmv
-      ncdu
-      surfraw
-      w3m
-      fbida
-      mutt
-      vlock
-    ];
-
-    multimedia = with pkgs; [
-      pulseaudio pvolctrl
-      MPlayer
-      vorbisTools
-      mpg321
-      mp3info
-    ];
-
-    crypto = with pkgs; [
-      gnupg1compat openssh
-      keychain
-    ];
-
-    dev = with pkgs; [
-      manpages
-      posix_man_pages
-      gitFull
-      gdb
-      gnumake
-      vim_configurable
-      ltrace strace
-    ];
-
-    net = with pkgs; [
-      netrw
-      nmap
-      socat
-    ];
-
-    x11 = with pkgs; [
-      i3 i3lock i3status dmenu conky
-      tkabber
-      tkabber_plugins
-      xpdf
-    ];
-
-    misc = with pkgs; [
-      lastwatch
-      chromiumBetaWrapper
-      glxinfo
-      imagemagick
-      graphviz
-      youtubeDL
-      ghostscript
-      rtorrent
-    ];
-  };
+    collection = import ../collections/aszlig.nix pkgs;
+  in pkgs.lib.mapAttrsToList genAszligEnv collection;
 
   tkabberRev = 2009;
 in {