nixos/pkgs/nixpkgs.nix

15 lines
365 B
Nix
Raw Normal View History

{ config, lib, ... }:
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 = pkgs: with pkgs; rec {
theme_flat-remix = callPackage ./flat-remix { };
theme_sddm_midnight = callPackage ./sddm_midnight { };
xdiskusage = callPackage ./xdiskusage { };
2019-02-26 13:44:40 +01:00
};
};
}