Reworked pkgsets implementation again, still not really what I want yet.

This commit is contained in:
Kevin Baensch 2019-10-23 03:44:17 +02:00
parent cc21ece351
commit c33b4517a7
20 changed files with 364 additions and 290 deletions

View file

@ -1,12 +1,16 @@
{ config, lib, pkgs, ... }:
{
let
callPackage = pkgs.callPackage;
in {
nixpkgs.config = {
allowUnfree = true;
mpv.vaapiSupport = (lib.elem "xserver" config.machine.services);
packageOverrides = {
pkgsets = import ./pkgsets.nix { inherit config lib pkgs; };
theme_flat-remix = callPackage ./flat-remix { };
theme_sddm_midnight = callPackage ./sddm_midnight { };
xdiskusage = callPackage ./xdiskusage { };
};
};
}