about summary refs log tree commit diff
path: root/nixpkgs/config.nix
blob: ca1d33f3cbea979f5b976cffa3db0e36cfef37c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  pulseaudio = true;
  chromium.jre = true;
  firefox.jre = true;

  # Needed for CPU microcode
  allowUnfree = true;

  packageOverrides = pkgs: let
    mainOverrides = import ../overrides pkgs;
    envs = import ../envs (pkgs // mainOverrides);
  in mainOverrides // envs;
}