blob: 4fddbd208248248a8424f1301de5c7169a30e7b7 (
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
25
|
{
lib,
system,
overlays ? [],
sysLib,
}: let
additionalPackages = (import ./pkgs) {inherit 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) [
"steam"
"steam-original"
"steam-runtime"
"steam-run"
];
};
}
|