summary refs log tree commit diff
path: root/release.nix
blob: 7f758ae3562ce15e31842bd685392f67cbba8464 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# SPDX-License-Identifier: MIT
# SPDX-FileCopyrightText: 2022 Alyssa Ross <hi@alyssa.is>

# This file is built to populate the binary cache.

import lib/eval-config.nix ({ config, ... }: {
  doc = import ./Documentation { inherit config; };

  checks = import release/checks.nix { inherit config; };

  combined = import release/combined/run-vm.nix { inherit config; };
})

# Set config = {} to disable implicitly reading config.nix, since
# we'll want the result to be the same as on the binary cache.  If it
# turns out there is a compelling reason to read the default config
# here, we can reconsider this.
{ config = {}; }