about summary refs log tree commit diff stats
path: root/pkgs/default.nix
blob: 38c58a954d69b96a8d9768acdde03efa77370409 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  lib,
  system,
  overlays ? [],
  sysLib,
  homeConfig,
  nixosConfig,
}: let
  additionalPackages = (import ./pkgs) {inherit homeConfig nixosConfig sysLib;};
  complete_overlays = overlays ++ additionalPackages;
in {
  # TODO: inheriting system here is discouraged, localSystem or hostSystem should be inspected
  inherit system;
  overlays = complete_overlays;
  config = {
    # TODO: this fails because of the root tempsize, which should be increased
    # contentAddressedByDefault = true;

    allowUnfreePredicate = pkg:
      builtins.elem (lib.getName pkg) [
        "pypemicro" # required by pynitrokey
      ];
  };
}