12 lines
252 B
Nix
12 lines
252 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
nixpkgs.config = {
|
|
allowUnfree = true;
|
|
mpv.vaapiSupport = (lib.elem "xserver" config.machine.services);
|
|
|
|
packageOverrides = {
|
|
pkgsets = import ./pkgsets.nix { inherit config lib pkgs; };
|
|
};
|
|
};
|
|
}
|