nixpkgs.config = {
allowUnfree = true;
pulseaudio = true;
firefox = {
#enableGoogleTalkPlugin = true;
enableAdobeFlash = true;
icedtea = true;
};
git.svnSupport = false;
mplayer = {
pulseSupport = true;
fontconfigSupport = true;
lameSupport = true;
x264Support = false;
};
packageOverrides = pkgs: rec {
nix = pkgs.stdenv.lib.overrideDerivation pkgs.nix (oldAttrs: {
#patches = /home/clever/x/nix-1.11.2/upgrade.patch;
patches = ./hax.patch;
});
toxvpn = pkgs.callPackage ./toxvpn.nix {};
bluez = pkgs.bluez5;
#teamviewer = pkgs.callPackage_i686 ./10.nix { acceptLicense = true; };
pulseCustom = pkgs.callPackage ./pulse.nix { };
linux_4_4 = pkgs.linux_4_4.override {
extraConfig = ''
SCHEDSTATS y
LATENCYTOP y
'';
};
};