blob: 7fd640d1ce2ee2446d0efa394e953647aa8ee525 (
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
|
{
lib,
system,
overlays ? [],
sysLib,
config,
}: let
additionalPackages = (import ./pkgs) {inherit config 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
];
};
}
|