1
0
Fork 0
nixos/pkgs/nixpkgs.nix

19 lines
491 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
2019-02-26 13:44:40 +01:00
let
callPackage = pkgs.callPackage;
in {
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 = {
theme_flat-remix = callPackage ./flat-remix { };
theme_sddm_midnight = callPackage ./sddm_midnight { };
xdiskusage = callPackage ./xdiskusage { };
django3 = pkgs.python3Packages.callPackage ./django3 { };
2021-10-28 09:46:12 +02:00
gitpkgs = import /nixpkgs {};
2019-02-26 13:44:40 +01:00
};
};
}