fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ lib
2, localSystem, crossSystem, config, overlays
3}:
4
5assert crossSystem == null;
6
7let
8 bootStages = import ../. {
9 inherit lib localSystem crossSystem overlays;
10 # Remove config.replaceStdenv to ensure termination.
11 config = builtins.removeAttrs config [ "replaceStdenv" ];
12 };
13
14in bootStages ++ [
15
16 # Additional stage, built using custom stdenv
17 (vanillaPackages: {
18 inherit config overlays;
19 stdenv =
20 assert vanillaPackages.hostPlatform == localSystem;
21 assert vanillaPackages.targetPlatform == localSystem;
22 config.replaceStdenv { pkgs = vanillaPackages; };
23 })
24
25]