nixos/pkgs/nixpkgs.nix

13 lines
252 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
2019-02-26 13:44:40 +01:00
{
nixpkgs.config = {
allowUnfree = true;
mpv.vaapiSupport = (lib.elem "xserver" config.machine.services);
2019-02-26 13:44:40 +01:00
packageOverrides = {
pkgsets = import ./pkgsets.nix { inherit config lib pkgs; };
2019-02-26 13:44:40 +01:00
};
};
}