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

# This file is built to populate the binary cache.

# 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 ? import nix/eval-config.nix { config = {}; } }:

{
  doc = import ./Documentation { inherit config; };

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