blob: 85fccbce657c2a3e3481bb373684e01d886cdd97 (
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"
# ];
};
}
|