Make pkgsets accessible to service configurations.
This commit is contained in:
parent
206c2e42af
commit
cc21ece351
7 changed files with 29 additions and 35 deletions
|
@ -1,14 +1,12 @@
|
|||
{ config, lib, ... }:
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
nixpkgs.config = {
|
||||
allowUnfree = true;
|
||||
mpv.vaapiSupport = (lib.elem "xserver" config.machine.services);
|
||||
|
||||
packageOverrides = pkgs: with pkgs; rec {
|
||||
theme_flat-remix = callPackage ./flat-remix { };
|
||||
theme_sddm_midnight = callPackage ./sddm_midnight { };
|
||||
xdiskusage = callPackage ./xdiskusage { };
|
||||
packageOverrides = {
|
||||
pkgsets = import ./pkgsets.nix { inherit config lib pkgs; };
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue