about summary refs log tree commit diff
path: root/nixpkgs/config.nix
blob: cfb30f264599d87b229752744930910d16e86d6d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
let
  aszligCollections = pkgs: let
    genAszligEnv = name: paths: pkgs.buildEnv {
      name = "aszlig-${name}-packages";
      inherit paths;
      ignoreCollisions = true;
    };
    collection = import ../collections/aszlig.nix pkgs;
  in pkgs.lib.mapAttrsToList genAszligEnv collection;
in {
  pulseaudio = true;
  chromium.enableGoogleTalkPlugin = true;
  chromium.jre = true;

  firefox.jre = true;

  packageOverrides = import ../overrides;
}